

or simply ext3addeman wrote:4. Run linux software raid 5 with perhaps xfs or jfs.
Why would i want to go with ext3?gentoo-dev wrote:or simply ext3addeman wrote:4. Run linux software raid 5 with perhaps xfs or jfs.
Interesting problem, how to do it without extra temporary storage. Here's one way. (Which upon re-reading, seems like a complicated way. Maybe there's a better answer.)There are some implementation issuses: I have to start the new array with 4 new disks and transfer as much as possible from the existing setup so i can use some pvmove to free the 3 sata disks in the running array.
I think i can find a friend with some storage. Maybe i can scrape that space together myself, i have a few other computers, so that is not something i really worry about. I appreciate your solution, it was elegant. Maybe it could be turned into:Akkara wrote: ...
Whew! Maybe there's a better way to do all this. Do you have a friend with a spare drive you can borrow?
Edit: simplified a step
Code: Select all
mdadm --create --verbose /dev/md1 --level=5 --raid-devices=8 /dev/sda1 /dev/sdb1 /dev/sdc1 /dev/sdd1 missing missing missing missingCode: Select all
mdadm --manage --add /dev/md1 /dev/sde1 /dev/sdf1 /dev/sdg1Code: Select all
mdadm --create --verbose /dev/md1 --level=5 --raid-devices=4 /dev/sda1 /dev/sdb1 /dev/sdc1 /dev/sdd1Code: Select all
mdadm --add /dev/md1 /dev/sde1 /dev/sdf1 /dev/sdg1 /dev/sdh1
mdadm --grow /dev/md1 --raid-devices=8Code: Select all
mdadm --create --verbose /dev/md1 --level=5 --raid-devices=5 /dev/sda1 /dev/sdb1 /dev/sdc1 /dev/sdd1 missing