Home » How To » How to Increase Disk Size of Your Existing Virtual Machines in VirtualBox

How to Increase Disk Size of Your Existing Virtual Machines in VirtualBox

Here is How to Increase Disk Size of Your Existing Virtual Machines in VirtualBox. You installed one or more operating systems in VirtualBox. While creating those virtual operating systems, you also created virtual hard disks for them in VirtualBox.

You specified the maximum size of the virtual disk to say 15 or 20 GB but now after using it for some time, you realize that your virtual machine is running out of space.

Yes, you can enlarge the virtual hard disk in VirtualBox even after creation. Although this is a safe and tested procedure, it is highly recommended to create a backup of your virtual machine before you perform such an action.

How to enlarge VirtualBox disk size

Enlarge Disk Size Virtualbox - mytechmint

I will show you how to resize disk in VirtualBox graphically and via the command line (for Linux geeks). Both methods are easy and straightforward.

Method 1: Using the Virtual Media Manager in VirtualBox

VirtualBox 6 added a graphical option for resizing virtual disks. You can find it at the file tab of VirtualBox home page.

Go to File->Virtual Media Manager:

Increase disk size using Virtual Box Media Manager - mytechmint

Select one of your virtual machines in the list and use the “Size” slider or type the size value that you need. Once done click “Apply”.

Increasing Virtual Box Disk Space -mytechmint

Keep in mind that though you increased the size of your virtual disk, the actual partition size remains the same if your space is dynamically allocated.

Method 2: Increase VirtualBox disk space using the Linux command line

If you are using a Linux operating system as a host, open the terminal and type the following command to resize VDI:

VBoxManage modifymedium "/path_to_vdi_file" --resize <megabytes>

The resize process should finish right after you click the enter button to execute the command.

[box type=”info” align=”aligncenter” class=”” width=””]Note: The commands modifyvdi and modifyhd of earlier versions of VirtualBox commands are also supported and mapped internally to the modifymedium command.[/box]

If you are not sure where your virtual machines are saved, you can find the default location from the VirtualBox home page by clicking on Files -> Preferences or by using the keyboard shortcut Ctrl+G.

Virtual Box Preferences - my tech mint

Conclusion

Personally, I prefer to use the terminal on every Linux distribution that I use for expanding disk, the graphical option is a very handy addition to the latest VirtualBox release.

Leave a Comment