13 lines
218 B
Markdown
13 lines
218 B
Markdown
---
|
|
tags:
|
|
- RAID
|
|
- Bash
|
|
- Scripting
|
|
- Linux
|
|
---
|
|
|
|
https://www.digitalocean.com/community/tutorials/how-to-create-raid-arrays-with-mdadm-on-ubuntu-16-04
|
|
``` sh
|
|
sudo mdadm --grow /dev/md0 -l 5
|
|
cat /proc/mdstat
|
|
``` |