I have 3 hds, one of 500G which I installed Ubuntu 10.10 on, and two of 1TB each which I'd like build a RAID 0 volume on. My question are:
1) What are the pros and cons of using my motherboard RAID or Linux Software RAID?
2) How do I safely mount /home on that RAID volume?
Linux software RAID is pretty good. If you have a high-end motherboard the hardware RAID me be faster, but the software RAID is going to be a lot more flexible, and you'll have all the tools for configuring it at your fingertips without having to boot into BIOS.
See the
mdadm
man page and the various documentation here.I'm not sure what you're asking here...mounting a RAID device is just like mounting any other device; you put an entry in your
/etc/fstab
file and the system will mount it automatically when it boots. RAID devices are typically named/dev/md0
,/dev/md1
, and so forth, so yourfstab
might have an entry like this:High-end motherboards, as mentioned by larsks, should not be taken to mean motherboards that have "fakeRAID" support. If you have one of those then you will have a much better time using Linux soft raid, unless you want to dual boot another OS on the same drive array.
Read up on Ubuntu FakeRaid support if you fall into this category and want to pursue it.