Revision history of "Create an mdadm RAID array"

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 23:00, 26 July 2022Digimer talk contribs 664 bytes +664 Created page with "{{howto_header}} This coverts creating a software RAID array in EL8. This will combine <span class="code">/dev/nvme0n1p4</span> + <span class="code">/dev/nvme1n1p4</span> and <span class="code">/dev/nvme2n1p4</span> into a new <span class="code">/dev/md1</span> RAID 5 array. <syntaxhighlight lang="bash"> mdadm --create /dev/md1 --raid-devices=3 --level=5 --spare-devices=0 /dev/nvme[012]n1p4 </syntaxhighlight> <syntaxhighlight lang="bash"> </syntaxhighlight>..."