How would I setup a RAID config in Windows XP?

2

I've heard a RAID setup can mean I have a better chance of not losing data.

Being that I'm a bit of a software nerd and hardware novice, how would I implement a raid?

Is it software/hardware of both?

Forgive my cluelessness!

Thanks.

UPDATE

Great answers guys! Much appreciated.

alex

Posted 2009-08-05T05:16:38.123

Reputation: 3 604

2I personally don't think RAID on a desktop computer is worth it. Just back your stuff up with something like Dropbox and forget about it. As @Qwerty pointed out, if you get a virus or something similar, RAID won't save you, but an online backup will, and for a portion of the price. – Sasha Chedygov – 2009-08-05T06:36:10.460

Answers

2

Not that I want to refer you to another page but the Wikipedia Article on RAID contains a lot of information on RAID.

Quick low down on RAID:

You need a RAID controller to enable RAID usage. This is usually built into most mother boards now days. There is such a thing as software RAID (the OS) but it can be troublesome depending on how you have it working. Recovering from software RAID can be more difficult depending on what HDD fails (from experience).

You access the RAID config by pressing a combination of keys during the computer boot process.

Main types of RAID are 1 (mirrored) and 0 (striped).

For protecting data in your case you would want to use RAID 1.

RAID 1 will help protect against data loss from HDD failures etc..

RAID 1 will not help protect against data loss if you get a virus, unwanted formats, and any rm mistakes.

So yes you can have a better chance of not losing data if you implement RAID. However it would be foolish to rely on this as a backup strategy. But with that being said it would be silly not to have RAID 1 implemented on every critical server you have.

Qwerty

Posted 2009-08-05T05:16:38.123

Reputation: 1 759

2

RAID does mean Redundant Array of Independent Disks, which does already explain a little bit of the term. It allows you to combine several disks to an array so that they provide redundancy and/or more performance.

Generally there are several RAID levels (see Wikipedia as already mentioned). The more important levels are RAID 0, RAID 1, RAID 5 and combinations of the like RAID 10 which is a combined RAID of an level 1 and level 0 array.

If you want to use RAID for redundancy you cannot use RAID 0, but any other level. RAID 1 has the best redundancy, because all disks except one may fail, but you can only use the capacity of one disk. RAID 5 has a better ratio between redundancy and capacity, because you can use the capacity of all except one disks and any one disk may fail. Decide yourself which RAID level you want to use.

There are different ways how to implement RAID. You can have a RAID controller, which does the work for you. It's generally simply a PCI(e) card which has several (S)ATA ports and does RAID on hardware level (that's why it's called hardware RAID). You can configure the RAID in the controller BIOS setup. Some controllers also provide userspace tools which allow managing the RAID via Windows.
Another way how to implement RAID is via the operating system. Many OSs provide software RAID functionality. If you have connected more than one harddisk directly to the mainboard of your computer, the operating system may do the work for you.

The disadvantage of software RAIDs may be, that your CPU has to do the work for you, but generally the bottleneck is still I/O and not the CPU.

BUT: You should keep in mind, that RAID in no backup solution. It only provides redundancy by offering failsafe performance. If you accidentally delete some files or you lose them as a result of an filesystem error, your data also gets corrupted on the other disks of the array. It is still necessary to regularly backup your data!


To configure a software RAID using Microsoft Windows you can use the Disk Management of the Computer Management MMC (compmgmt.msc). Windows XP only supports RAID 0 and RAID 1, RAID 5 is only supported by the server versions of Windows, but this guide may help you to enable RAID 5 support on Windows XP, if you want to.

Manuel Faux

Posted 2009-08-05T05:16:38.123

Reputation: 936