Skip to content

Instantly share code, notes, and snippets.

@ECiurleo
Created January 23, 2023 13:13
Show Gist options
  • Save ECiurleo/10460ec5b47487c6f63ffc308b9b7dc4 to your computer and use it in GitHub Desktop.
Save ECiurleo/10460ec5b47487c6f63ffc308b9b7dc4 to your computer and use it in GitHub Desktop.
Resize partitions for EBS volumes after you change their size in AWS
#Update the LVM partition sizes for the data disk after EBS resize
sudo pvresize /dev/nvme1n1
sudo lvextend -l +100%FREE /dev/mapper/data-lvol0
#Update the EXT4 partition sizes for the root disk after EBS resize
sudo growpart /dev/nvme0n1 1
sudo resize2fs /dev/nvme0n1p1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment