Created
June 26, 2009 20:30
-
-
Save rynmrtn/136718 to your computer and use it in GitHub Desktop.
This file contains 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
# How to resize a logical volume in linux | |
$ sudo lvm | |
lvm> lvresize -L +{size}G /vol/location | |
lvm> lvdisplay | |
# How to resize a physical volume in linux | |
$ sudo lvm | |
lvm> pvresize --setphysicalvolumesize {size}G /vol/location | |
lvm> pvdisplay |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment