You can grow a RAID1… if you replace both disks. I just did, it worked like this:
Started with 2x4T drives (sda1 and sdb1) in a working RAID1 array (md0)
Bought two new 16T drives and plugged them in (sdc and sdd)
Partition them with full drive partitions (sdc1 and sdd1)
parted –script /dev/sdc “mklabel gpt”
parted –script /dev/sdc “mkpart primary 0% 100%”
parted –script /dev/sdc “set 1 raid on”
# Repeat for /dev/sdd
Add them both to the RAID1:
Fail one of the old drives:
Wait for sync to finish:
Fail the other old drive:
Wait for sync to finish:
Remove the old drives from the array:
Grow the array:
Grow the filesystem:
..and now I have a 14TB RAID1 instead of the initial 4TB.
Originally from; StackExchange