Skip to content

Instantly share code, notes, and snippets.

@abdulhadad
Last active March 8, 2017 17:25
Show Gist options
  • Save abdulhadad/889676a5a85c8809115f9a3cf362fe55 to your computer and use it in GitHub Desktop.
Save abdulhadad/889676a5a85c8809115f9a3cf362fe55 to your computer and use it in GitHub Desktop.
Fedora LVM shrink /home for root partition
# 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