Boot From a USB Drive in VirtualBox in Linux

You can use a live Linux USB with virtual machines in VirtualBox. It saves you the annoyance of rebooting your host machine.
Warp Terminal

Got a live Linux USB? The usual way to test it on your current system is to reboot and choose to boot from the live USB when the system restarts.

But that's annoying as you need to quit working on your computer and restart it.

A less disruptive way is to use a VM.

Yes, you can boot from a USB in a virtual machine with VirtualBox. This way, you don't have to install a distribution in VM just to try it. Use the live session instead.

In this tutorial, I'll show the steps to boot from a USB drive in VirtualBox on Linux systems. It takes some time and effort but saves you from rebooting your system.

Boot from USB drive in VirtualBox in Linux

Since this is a tutorial for advanced users, I am leaving out a few steps that you need beforehand:

  • VirtualBox installed on your Linux system
  • A live Linux USB, preferably Using Ventoy
How to Install VirtualBox on Ubuntu Linux [3 Simple Ways]
This beginner’s tutorial explains various ways to install VirtualBox on Ubuntu and other Debian-based Linux distributions.

This guide is divided into three parts:

  • Create a virtual machine disk file
  • Boot using USB in VM
  • Removing virtual machine disk (optional)

So let's start with the first one.

Step 1: Create a virtual machine disk file (VMDK)

First, you need to identify the disk name of the USB drive, and to do so, you have to list the drives of your system.

For that purpose, I'm going to use the lsblk command:

lsblk 
list drives in Linux using the lsblk command
🚧
Make sure to use the disk name without any numbers. In my case, Ventoy is named with sdb1 but still, I have to use the sdb only.

From the above image, you can see, Ventoy is listed having the sdb1 but you have to use the name without any numbers. This means I have to use the sdb only, or else, it will throw an error.

Once you find your drive name, use the VBoxManage command in the following command to create

sudo VBoxManage createmedium disk --filename=/path/to/rawdisk.vmdk --variant=RawDisk --format=VMDK --property RawDrive=/dev/sda

In the above command, replace the path with /path/to/rawdisk.vmdk to where you want to save the file and /dev/sda with your target drive.

In my case, I want to create a file named IF.vmdk in my home directory and my target drive is /dev/sdb, then, I will be using the following:

πŸ“‹
You have to give an absolute path to create the vmdk file!
sudo VBoxManage createmedium disk --filename=/home/sagar/IF.vmdk --variant=RawDisk --format=VMDK --property RawDrive=/dev/sdb
create virtual machine disk drive for virtualbox to boot from USB drive in Linux

And finally, change the permissions using the chmod command:

sudo chmod 777 Filename.vmdk
use chmod command to change the permissions

Step 2: Boot from USB in VirtualBox in Linux

First, open the VirtualBox from your system menu and click on the New button.

There, name your VM and select the operating system type and its version:

Create VM in VirtualBox to boot from USB in Linux

Now, click on the Next button and it will ask you to allocate hardware resources for your VM:

allocate RAM and cores to Vm to boot from USB in VirtualBox in Linux

Once you are done allocating the hardware resources, click on the Next button.

Here, you will find an option to create or add a virtual disk. Now, follow 3 simple steps:

  • Select the 2nd option saying Use an Existing Virtual Hard Disk File.
  • Click on the File icon.
  • Hit the Add button and select the file ending the .vmdk that you created recently.

Once you select the file, it will show you the name of the file, select it and hit the Choose option:

select the vmdk file

It will show you the file that has been selected to boot from. Click on the next and it will show the summery of choices you've made.

Hit the Finish button:

Finish the VM creation to boot from USB in VirtualBox in Linux

That's it! The VM has been created.

To start the VM, first, select the VM and hit the start button:

start the VM

As my USB had Ventoy, you can see, multiple distros listed here:

Create Ventoy USB and boot from Virtual machine in Linux

Pretty cool. Right?

Step 3: Remove VM with vmdk file (optional)

When I tried removing the vmdk file after deleting the VM, sure, it was getting deleted but whenever I tried creating a new file having the same name, it gave me an error saying the file already exists!

So here, I will walk you through how you can remove the VM with the vmdk file.

First, turn off the VM and remove it

Remove VM from VirtualBox

Now, if you try to remove the vmdk file using the rm command and elevated privileges, you can remove it (but there's where the illusion starts).

For example, here, I removed the IF.vmdk file:

sudo rm IF.vmdk
use rm command to remove vmdk file

And now, if I try to create a new vmdk file with the same name, it gives me an error saying the file already exists:

unable to create vmdk file in Linux, file already exist

To remove the vmdk file, first, you have to unregister the file using the following:

sudo VBoxManage closemedium disk /path/to/MyDrive.vmdk
unregister vmdk file in Linux to remove it

Once done, you can remove the file using the rm command and it will be removed easily:

sudo rm Filename.vmdk

And then, if you try to create a vmdk file with the same filename, you can do that:

how to remove the vmdk file in Linux

There you have it!

More VM tips

If you are looking for the fastest VM, you can use the combination of Qemu + KVM. I know it sounds complex.

But to make things easy, we made a dedicated guide on how to install and use Qemu on Ubuntu including enabling shared folders, clipboard, and auto-resizing:

How to Install and Use Qemu on Ubuntu
Learn how to properly install Qemu in Ubuntu and then configure a Linux distro in VM.

I hope you will find this guide helpful.

About the author
Sagar Sharma

Sagar Sharma

A software engineer who loves to write about his experience with Linux. While reviving my crashed system, you can find me reading literature, manga, or watering my plants.

Become a Better Linux User

With the FOSS Weekly Newsletter, you learn useful Linux tips, discover applications, explore new distros and stay updated with the latest from Linux world

It's FOSS

Great! You’ve successfully signed up.

Welcome back! You've successfully signed in.

You've successfully subscribed to It's FOSS.

Success! Check your email for magic link to sign-in.

Success! Your billing info has been updated.

Your billing was not updated.