I plan to use the Asus motherboard with Intel 975x chipset. This
motherboard has so many Raid options. Why so many Raid options? Thanks
Different options give you different things. The two main things you
can get from raid are stripping and mirroring. In general, stripping
makes it faster, but less reliable, while mirroring makes it more
reliable, but slower.
One option is raid 0, is stripping. This only needs two drives, and
increases the speed. However, if one drive fails, you lose everything.
Another option is raid 1, which is mirroring. This means that there
are two copies of everything. It is often slower in write operations,
but can be faster in read operations. If one drive fails, you don't
lose anything.
Another option is raid 10, which has both stripping and mirroring, but
requires four drives. If one drive fails, you do not lose anything. It
is both fast and reasonably reliable, but requires a relatively large
investment in drives (4 minimum).
Another option is raid 5. This uses stripping and a parity drive. This
can be very high performance, and tolerates a single drive failure. It
can scale from 3 to as many drives as the controller supports.
However, as you add drives, you increase the chance of multi-drive
failure where you would lose everything.
Note, that with mirroring, you are duplicating everything. So if you
buy two 320GB drives, and go with raid 1, you have a total of 320GB of
space, not 640. If you buy four 320GB drives for raid 10, you will
have 640GB of space, not 1280.
Personally, for home use, I reliable backups to mirroring. Mirroring
only protects against a single drive failure. A detachable backup is
far more reliable than any raid system can hope to be, as you can
geographically isolate the backup (i.e. Store it at a friend's house
if it isn't confidential, or at a bank if it is). This means even if
your house burns down, you still have your data. While raid would just
have a pile of destoyed drives.
Finally, in most cases, all of the drives need to be exactly the same
size. A few setups allow you to treat each drive as the least common
denominator. That means if you have three 100GB drives and one 500GB
drive, the 500GB drive gets treated as a 100GB drive. Some setups do
not even allow that, requiring all four drives to be 100GB, so it
would only use the three 100GB drives, and the 500GB would need to be
attached separately (outside the raid array).
Dean G.