Skip to content

Instantly share code, notes, and snippets.

@nahidakbar
Last active October 27, 2020 06:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nahidakbar/acfc9093bc21653224414f6396b541dc to your computer and use it in GitHub Desktop.
Save nahidakbar/acfc9093bc21653224414f6396b541dc to your computer and use it in GitHub Desktop.
Extend ubuntu vm size without using live disks and gui tools
Extend size of disk and then boot into vm.
# fix up partition size
sudo parted -l
Fix
# file up partition
sudo fdisk /dev/sda
d delete last partition
n create new paritition
w write
# Reize fs
sudo resize2fs /dev/sda2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment