eh.. Close.. A few minor corrections. You can use pretty much any 2 hard drives in a raid setup. Keep in mind that the effect of using two different drives is that you are limiting the space of the larger one by the smaller one. To make this a little more clear, let me explain the 3 raid modes supported by the KT7 Raid.
Raid 0
or data striping uses 2 hard drives in paralel to improve disk transfer rate. Basically, the controller writes portions of the file to each disc, so that a single file straddles both discs. Then, when you read the file, you have 2 hard discs sharing the task, effectively doubling the transfer rate.
The are a couple of things to note here. The increased transfer rate would be a max of 2 times the transfer rate of the SLOWER drive. That's because no matter how fast your quicker drive is, you still need to wait for the slower drive to read it's portion of the file before it's useable.
The other issue with striping is that you can only utilize a portion of the space on the larger drive equal to the total of the smaller. Although you CAN use two different size drives, Raid requires they both be the same size. So, if one drive is 40GB and the other 13GB, raid will only use 13 of the 40GB of space on the first drive to match the second. Raid 0 however, adds the space used on both drives together, so in the above example, you would have your 13GB drive, plus 13GB of the 40GB drive, to give you a total of 26GB of space.
Raid 1
is mirroring. It is useful when there is an absolute need for data integrity. I can't really see much use for it on a PC (other than a marginal increase in access time). Basically, if one of your hard drives fails for whatever reason, the other has an identical copy of the data. This has been refered to as a "backup" in this forum, but that term is not quite correct. With Raid 1 you don't "back up" your data to a second drive. Rather, both drives read and write data at the same time, so BOTH contain your "master" data copy. If one crashes, you don't have to really RESTORE your data. Raid takes care of that for you as soon as you replace the faulty drive. In the meantime, it runs off the disc that is still good as if nothing had happened (supposedly
As far as size goes in Raid 1, you are limited to the smallest of both your drives. And they are NOT added together. In the above example, 13GB and 40GB drives used in Raid 1 would effectively be 1 13GB drive.
Raid 0+1
gives you the best of both worlds. Unfortunately you also need 4 hard drives to take advantage of this. Basically you just add together Raid 0 and Raid 1. To make it easier to understand, assume U is a hard drive, and W is a set of two hard drives, combined in Raid 0 (data striping)
U+U & U+U (Two sets of two discs Raid 0 on each set)
gives us
W+W (Each set is considered 1 drive, combined in Raid 1)
Gives us our final product, 1 hard drive Raid 0+1.
The formula for size would simply be the smallest drive of the 4. If you use 3 80GB drives, and one 5GB drive, you would have effectively 5GB of storage.
Hope this helps somewhat. Tom offered a great article on Raid when he covered converting the Promise 66 controller into a Fasttrack Raid controller.