I'm moving my VG to a RAID, i have 3 disk 600GB, the VG is in the partition /dev/sdc2
/dev/sdc1 1G type linux <-- Boot partition
/dev/sdc2 599G type Linux LVM
One disk have the VG and with the others two i've created the RAID5
mdadm --create /dev/md0 --level=5 raid-devices=3 /dev/sdb1 /dev/sdd1 missing
pvcreate /dev/md0
vgextend VG_name /dev/md0
pvmove /dev/sdc2
vgreduce VG_name /dev/sdc2
pvremove /dev/sdc2
later I format the /dev/sdc2
to type 'Linux raid autodetect' for add to the RAID but now i get
mdadm: /dev/sdc2 not large enough to join array
certainly completely forget the boot partition on device /dev/sdc
How can solve for add /dev/sdc2 to the RAID. i think i need resize the partitions /dev/sdb1
and /dev/sdd1
but i dont know how