Last active
January 17, 2017 23:46
-
-
Save yuuichi-fujioka/9043120 to your computer and use it in GitHub Desktop.
Extend root volume on LVM
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
#!/bin/bash | |
sudo pvcreate /dev/sdb1 | |
sudo vgextend ubuntu-vg /dev/sdb1 | |
sudo lvextend /dev/ubuntu-vg/root -l +100%FREE | |
# sudo lvextend /dev/ubuntu-vg/root -L+50G | |
sudo resize2fs /dev/ubuntu-vg/root # only for ext2,3,4 | |
#sudo resize2fs /dev/ubuntu-vg/root 50G |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment