HOWTO: 0.5TB RAID on a Budget
Compu486 writes "Inventgeek.com has a new how-to article
titled 'The
Poor Mans Raid Array.' The article details how to make a modular .5 terabyte
Raid 5 array for under $250 (USD), and it all runs on the Mandriva flavor of Linux." Drive prices being what they are, this seems cooler than it is practical. Update: 06/25 23:31 GMT by T : If that's not enough storage, Yeechang Lee writes "Let me show off the 2.8TB Linux-powered RAID 5 array I built for home use a few months ago. I provide lots of details on how I did it, what I used, and the results. The Usenet thread has good followup posts from others, too."
this seems cooler than it is practical.
Perfect for slashdot!
Possible new Slashdot Category?
Okay, half a terabyte? Hardly worth lifting a finger for. I have more than 2.5 terabytes almost entirely of porn. And not only that, but it's all stored on 20 IDE drives of various sizes, in external USB cases, plugged into three 7-port D-Link USB hubs, plugged into a PC.
That's a lot of storage.
That's balls-to-the-wall.
I'll take a picture of all the drives stacked up on one another on the desk (5 rows, 4 drives tall).
I take my porn seriously.
Actually, for RAID 5 you'd need a minimum of 3 drives.
n dependent_disks
http://www.acnc.com/04_01_05.html
http://en.wikipedia.org/wiki/Redundant_array_of_i
- Buy 3 250GB EIDE or SATA HD's very cheaply.
- Plug them into your cheap linux PC (with at least a 400Watt powersupply). If EIDE then make sure each drive is on its own (master) channel. If your BIOS supports "hardware" RAID, disable it.
- Use a low-level drive diagnostic fitness test to burn the drives in so you can be sure they won't fail right away. A great tool for this is The Ultimate Boot CD, as well as the 'badblocks' linux util.
- Assuming your 3 new drives are drives sdb, sdc, and sdd, with your bootdrive on sda (or hda), you should now partition each of them (instead of raiding the entire disk). I recommend creating one primary partition which is slightly smaller than the fullsize of the harddisk, such that if you buy a replacement drive of another brand and it isn't the EXACT same size, you won't be SOL when adding it. Mark the partition type as "FD", which is the raid autodetect type.
- Verify that your kernel supports software RAID by checking that
/proc/mdstat exists, or by checking for the multidisk "md" module in the output of "lsmod | grep md" after attempting to "modprobe md" and "modprobe raid5". If not supported, then... figure that out yourself.
- Now the fun part (assuming mdadm's installed):
/dev/md0 --level=5 --raid-devices=3 /dev/sdb1 /dev/sdc1 /dev/sdd1 /proc/mdstat
- Put a filesystem on the md0 device with mke2fs
/dev/md0 (or mkreiserfs, or whatever)
- Add a line to your
/etc/fstab to automount your new raid array at /raid5 or wherever.
- Oh, and if your distro doesn't automatically detect your array on reboot, you need to fix that by putting this in your init scripts somewhere:
Now, wasn't that easy?mdadm --create
View the status of the raidset construction by cat'ing
mdadm --assemble --scan
Power to the Peaceful