Created
May 28, 2024 16:09
-
-
Save lmarcondes/a57ca78a7d86959256059f9691bedd9d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mdadm --add /<dev> | |
mdadm --grow --raid-devices=n <raid-device> | |
# Growpart will make the partition occuppy all the space | |
# on the device. This is very fast in XFS or RAID | |
growpart <partition> | |
# xfs_growfs will grow the filesystem to the max partition size | |
xfs_growfs -d <mountpoint> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment