Formatted all pages according to guidelines.

This commit is contained in:
Ruben Vereecken
2016-01-07 18:31:27 +01:00
parent efa4cbd4de
commit 066582e8ea
284 changed files with 1338 additions and 1364 deletions

View File

@@ -1,27 +1,27 @@
# mdadm
> RAID management utility
> RAID management utility.
- create array
- Create array:
`mdadm --create {{/path/to/raid_device_file}} --level {{ raid level }} --raid-devices {{ number of disks}} {{/path/to/disk_device_file}}`
- stop array
- Stop array:
`mdadm -S {{/path/to/raid_device_file}}`
- mark disk as failed
- Mark disk as failed:
`mdadm {{/path/to/raid_device_file}} -f {{/path/to/disk_device_file}}`
- remove disk
- Remove disk:
`mdadm {{/path/to/raid_device_file}} -r {{/path/to/disk_device_file}}`
- add disk to array
- Add disk to array:
`mdadm {{/path/to/raid_device_file}} -a {{/path/to/disk_device_file}}`
- show RAID info
- Show RAID info:
`mdadm -D {{/path/to/raid_device_file}}`