md (software RAID) and lvm (logical volume management)

md

Building a RAID array using mdadm - two primary steps:

  1. mdadm --create to build the array using available resources
  2. mdadm --detail --scan to build config string for /etc/mdadm/mdadm.conf

Simple examples:

RAID6 array

Considerations when setting up the partitions might be that any replacement disks will need to support that same size partition. Unconfirmed but it sounds like it might be a reasonable concern: "Enter a value smaller than the free space value minus 2% or the disk size to make sure that when you will later install a new disk in replacement of a failed one, you will have at least the same capacity even if the number of cylinders is different." (http://www.jerryweb.org/settings/raid/)

RAID1 array

lvm

TODO