Skip to content

Instantly share code, notes, and snippets.

@womd
Created January 16, 2024 16:07
Show Gist options
  • Select an option

  • Save womd/de7c77932a23cce27b4e85a4b41ecc01 to your computer and use it in GitHub Desktop.

Select an option

Save womd/de7c77932a23cce27b4e85a4b41ecc01 to your computer and use it in GitHub Desktop.
linux vm - grow / resize partition to max out space
#Check Logical Volume (LV) details:
sudo lvdisplay
#Look for the LV path associated with your root filesystem (e.g., /dev/ubuntu-vg/ubuntu-lv).
sudo lvresize -l +100%FREE /dev/ubuntu-vg/ubuntu-lv
#Resize the Filesystem
sudo resize2fs /dev/ubuntu-vg/ubuntu-lv
#confirm
df -h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment