Jump to content

Mdadm: Difference between revisions

720 bytes added ,  15 January 2023
Created page with "Mdadm is used to create linux MD raids. ==Usage== <syntaxhighlight> # Check the status of /dev/md0 mdadm -D /dev/md0 </syntaxhighlight> ===Create a raid array=== See https://www.tecmint.com/create-raid-6-in-linux/ First use gdisk to create a linux raid partition (FD00) on all your disks. Note that is purely convention and is optional. Then run the following to create /dev/md0. <syntaxhighlight lang="bash"> mdadm --create /dev/md0 --level=6 --raid-devices=4 /dev/sda1 /..."
(Created page with "Mdadm is used to create linux MD raids. ==Usage== <syntaxhighlight> # Check the status of /dev/md0 mdadm -D /dev/md0 </syntaxhighlight> ===Create a raid array=== See https://www.tecmint.com/create-raid-6-in-linux/ First use gdisk to create a linux raid partition (FD00) on all your disks. Note that is purely convention and is optional. Then run the following to create /dev/md0. <syntaxhighlight lang="bash"> mdadm --create /dev/md0 --level=6 --raid-devices=4 /dev/sda1 /...")
(No difference)