Basic RAID
RAID (redundant array of inexpensive disks) is a series of disk configurations to get more reliability or performance (or both) out of multiple disks. RAID typically consists of two operations - striping and mirroring. Striping involves writing disk blocks in a pattern across multiple drives. This is very fast, because modern controllers can read and write to multiple disks simultaneously, so you essentially double your disk throughput. But you also double your liability, because a failure on either disk causes data to be lost. Mirroring takes care of that by writing exact copies of the same data to multiple disks. RAID-5 is a combination of the two, and is the most common, balancing space efficiency with speed.
Here are a few common configurations. All of these can be extended to larger configurations of more drives.



