Skip to content

Instantly share code, notes, and snippets.

@yuuichi-fujioka
Last active January 17, 2017 23:46
Show Gist options
  • Save yuuichi-fujioka/9043120 to your computer and use it in GitHub Desktop.
Save yuuichi-fujioka/9043120 to your computer and use it in GitHub Desktop.
Extend root volume on LVM
#!/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