Skip to content

Instantly share code, notes, and snippets.

@ilhamarrouf
Created December 12, 2024 01:57
Show Gist options
  • Select an option

  • Save ilhamarrouf/7726f2d851aad4d348e9fa7ead8a75c9 to your computer and use it in GitHub Desktop.

Select an option

Save ilhamarrouf/7726f2d851aad4d348e9fa7ead8a75c9 to your computer and use it in GitHub Desktop.
Auto expand last partition to use all unallocated space, using parted in batch mode
# 2023/2024's solution for Ubuntu 22.04 LTS
# Boot into Ubuntu Live CD
sudo parted /dev/sda print free
sudo parted /dev/sda resizepart 4 100%
# sudo e2fsck -f /dev/sda2
sudo resize2fs /dev/sda4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment