Last active
March 8, 2017 17:25
-
-
Save abdulhadad/889676a5a85c8809115f9a3cf362fe55 to your computer and use it in GitHub Desktop.
Fedora LVM shrink /home for root partition
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
# Fedora LVM shrink /home for root partition | |
df -h | |
lvdisplay /dev/fedora/home /dev/fedora/root | |
lvresize -L -100G /dev/fedora/home # broken after restart, maybe using -r option, lvresize -r -L -100G /dev/fedora/home | |
lvresize -r -L +100G /dev/fedora/root | |
lvdisplay /dev/fedora/home /dev/fedora/root | |
df -h |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment