Release the VDI file: File -> Virtual Media Manager -> Select VDI -> Release
Backup the VDI file
Open a command prompt and browse to:
$ cd C:\Program Files\Oracle\VirtualBox
Resize your .vdi file:
$.\VBoxManage modifyhd 'C:\Users\jochen\VirtualBox VMs\Ubuntu\Ubuntu.vdi'--resize40000# 40 GB disk
Startup your virtual machine
On the guest machine (Ubuntu)
Install & start gparted:
$ sudoapt-get install gparted
$ gparted
Get rid of the swap partition, which prevents you from expanding the root partition. Note that you cannot harm the rest of your machine - this is all happening inside a single file. Worst case scenario you trash this file and you have to use your backup instead.
Make a note of the size of the linux-swap partition 4 GB in my case
Right click on it and swapoff
Right click on it and Delete
Apply by clicking on the checkmark (Apply all operations). Ignore the warning
Right click on the extended file system that once housed the swap partition (/dev/sda2 in all likelihood) and delete it
Right click on the root partition (/dev/sda1) and resize it. Tab to the 'Free space following' field and enter the size of the swap partition. Shift-tab and the machine will work out the new size for you automatically
Right click in the unallocated space at the end and make it an extended partition
Right click in the new partition and select linux-swap in the File system field.
Commit your changes as before
Right click on your swap partition and select swapon
Important step omitted just before "start up your virtual machine" under windows. You'll need to go into virtual box manager and add your virtual box in under Settings->Storage->SATA.
Note: By deleting / re-adding the swap partition, you may need to edit /etc/fstab to change the swap partition UUID. For example, on Ubuntu 18, you can obtain the new UUID of the swap partition with "blkid", then update /etc/fstab accordingly.
Comments
Important step omitted just before "start up your virtual machine" under windows. You'll need to go into virtual box manager and add your virtual box in under Settings->Storage->SATA.
thanks
excellent. Very detailed.
Note: By deleting / re-adding the swap partition, you may need to edit /etc/fstab to change the swap partition UUID. For example, on Ubuntu 18, you can obtain the new UUID of the swap partition with "blkid", then update /etc/fstab accordingly.
Add new comment