currently status:
4 disk part 200G each, total 800G using raid0
raid0, md0: sda1+sdb1+sdc1+sdd1
and I want to add another disk part sdf1(>800G)
combine with md0 to make a raid10, like
raid1, md1: md0+sdf1
so I can replace the 4disks sd[a-d] later.
but when I tried with a VM,
the filesystem was destroyed afer doing with the following command.
mdadm --create --verbose /dev/md1 --level=1 --raid-devices=2 /dev/md0 /dev/sdf1
what should I do?
thanks.