This is an old revision of raid from 29.07.2019 20:28 edited by EvaggelosBalaskas.


Hits :

Software raid


mdadm : Linux Software Raid


mdadm is a tool for managing Linux Software RAID arrays.


It can create, assemble, report on, and monitor arrays.


It can also move spares between raid arrays when needed.


top


Create Raid 1


mdadm -C -v /dev/md0 -l 1 -n 2 /dev/hda1 /dev/hdb1


cat /proc/mdstat


top


Userfull Links


http://www.linuxdevcenter.com/[..]2002/12/05/RAID.html


http://tldp.org/HOWTO/Software-RAID-HOWTO.html


http://neilb.web.cse.unsw.edu.au/source/mdadm/


http://www.kernel.org/pub/linux/utils/raid/mdadm/


top