I have setup software RAID1-arrays using two 250GB harddrives. There's two arrays - one named md0 in which the system is kept and the other, md1 works as swap:
# cat /proc/mdstat
md0 : active raid1 sda1[1] sdb1[0]
239256512 blocks [2/2] [UU]
md1 : active raid1 sda2[1] sdb2[0]
4940736 blocks [2/2] [UU]
To keep things a bit more organized, I would like to use separate partitions for /tmp, /home, /var, /opt & and so on in the future. Do I need to create separate arrays for each partition or can I someway let my current md0 contain all these partitions without creating a dozen additional arrays?
Thanks
