Hi, > Sorry that I disturb you with such a problem but can't solve it alone > > So I have a RedHat6.2 Kernel 2.2.16 and I have RAID (md1) > > So my question is how can i "move" my current raid (md1) to md0 without > loosing the data on the RAID Create the /dev/md0 device, mount it to /mnt/newroot (or anything else) Then copy everything from the root device over to the new mounted partition: cd / find . -xdev | cpio -pm /mnt/newroot The above is what the HOWTO suggests. Change your /etc/lilo.conf to use /dev/md0 as your root/boot device. Re-run lilo Reboot. You can find all this here: http://www.ostenfeld.dk/~jakob/Software-RAID.HOWTO/Software-RAID.HOWTO.html Tamas.
