Notes
Resizing a Ubuntu Disk in a UTM VM
UTM is an awesome virtualization system based on QEMU built for M1 (ARM) Macs. v4.0.8 of UTM, the first v4 stable release, came out today with support for resizing QEMU disk images but while the UTM docs show how to resize the UTM machine, there’s several more steps to get the virtualized file system to recognize the additional disk space.
For an Ubuntu guest OS running a default GPT and LVM partition:
- On a shut down VM, in the UTM UI’s configuration, select the disk you wish to expand, resize the disk, and save the VM configuration.
- Launch the VM and get a terminal
- Run
sudo fdisk -l
and confirm that there is aGPT PMBR Size Mismatch will be corrected by w(rite)
warning - Run
sudo parted -l
and gparted should ask to automatically fix the size mismatch. Fix the size mismatch. - If the resizing doesn’t work, manually run
parted /dev/vda resize 3 100%
. - Run
pvresize /dev/vda3
. - Run
sudo lvm
to get an lvm console - Run
lvextend -l +100%FREE /dev/ubuntu-vg/ubuntu-lv
to expand the lvm logical volume - Exit the lvm console
- Run
sudo resize2fs /dev/ubuntu-vg/ubuntu-lv
to expand the ext4 file system to the logical volume - Run
df -h
to confirm that the/dev/mapper/ubuntu--vg-ubuntu--lv
has been expanded.
References: