3

I was creating an LVM RAID 10 across 4 physical volumes (each 3TB) when I got the following error message:

WARNING: New raid10 won't be synchronised. Don't read what you didn't write!

enter image description here

My googling came up with nothing about what this means. Does this mean that the mirroring of the raid will not work and if a single drive fails, all the data is lost?

Programster
  • 485
  • 12
  • 22
  • 2
    It's just a warning since you have used option **--nosync**. [From The man page of **lvcreate**](http://linux.die.net/man/8/lvcreate). "Specifying the optional argument **--nosync** will cause the creation of the mirror to skip the initial **resynchronization**. Any data written afterwards will be mirrored, but the original contents will not be copied. This is useful for skipping a potentially long and resource intensive initial sync of an empty device." – Pratap Sep 06 '14 at 20:14
  • silly me, I must have read that command 10 times and not seen that `--no-sync` part and looked that up. Can you put that comment as an answer and I will mark it as correct? – Programster Sep 06 '14 at 20:23

1 Answers1

5

It's just a warning since you have used option --nosync.

From The man page of lvcreate.

"Specifying the optional argument --nosync will cause the creation of the mirror to skip the initial resynchronization. Any data written afterwards will be mirrored, but the original contents will not be copied. This is useful for skipping a potentially long and resource intensive initial sync of an empty device."

Pratap
  • 665
  • 6
  • 22