Here are a few other notes on linux software raid. I created a directory called raidinfo to keep information in to make it easy to maintain the raid array. First… from the software raid howto, I’ve done the following….
sfdisk -d /dev/hda > /raidinfo/partitions.hda
sfdisk -d /dev/hde > /raidinfo/partitions.hde
So…. I’ve now got a good snapshot of the partitioning data. When I hooked up an external usb drive to add to the array, all I needed to do is this…
sfdisk /dev/sda < /raidinfo/partitions.hda (more…)