VirtualBox is a free and open-source cross-platform virtualization tool developed and maintained by Oracle. VirtualBox offers tons of interesting features, packed in a simple and intuitive UI. Compared to alternatives like VMware Workstation, VirtualBox is more user-friendly for anyone, in any situation.

Interested in testing out a new distro? Instead of installing it over the current system, try the system out first using VirtualBox. Need to have multiple operating systems running at the same time? VirtualBox has got you covered. Almost all aspects of a virtual machine are customizable.

This guide shows you how to install and use VirtualBox in Ubuntu 20.04.

VirtualBox in Ubuntu

There are a few ways to install VirtualBox in Ubuntu 20.04. The simplest way to install VirtualBox is to get it directly from the Ubuntu software repos. The only problem with this method is that you may not get the latest version of VirtualBox.

It is also possible to perform a manual installation of VirtualBox. You can grab the official VirtualBox DEB package for Debian/Ubuntu and install it using APT. The downside with this approach is that you must manually update VirtualBox once a new version is released. This can be circumvented by adding the Oracle repo.

Finally, you can install VirtualBox directly from the source code. This method allows you to build VirtualBox from the source but can be a lengthier and more complex process. Installing VirtualBox using this method is not recommended, as you will have to follow it again to update VirtualBox, but this method can be used by advanced users who like to build programs from the source code.

Let us begin!

Install VirtualBox from the Ubuntu Repository

This is the default method for installing VirtualBox. All you have to do is tell APT to get the VirtualBox package from the default Ubuntu repos.

Fire up the terminal and run the following command:

$ sudo apt update && sudo apt install virtualbox virtualbox-ext-pack -y

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

When prompted for virtualbox-ext-pack configuration, select “Ok.”

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Accept the VirtualBox PUEL license.

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

The virtualbox-ext-pack will automatically download and install the VirtualBox extension pack.

Install VirtualBox from the Oracle Repository

This method is useful if you need the latest version of VirtualBox. To make this work, you must perform a one-time configuration of the Oracle repo. After that, APT can handle the rest.

Fire up a terminal. Make sure that you have wget installed.

$ sudo apt update && sudo apt install wget -y

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Grab and add the Oracle VirtualBox repo GPG keys.

$ wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- |


 sudo apt-key add

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

$ wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O-

| sudo apt-key add

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Now, add the repo.

$ sudo add-apt-repository “deb [arch=amd64] http://download.virtualbox.org/


virtualbox/debian $(lsb_release -cs) contrib”

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Update the APT cache.

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Finally, install VirtualBox. At the time of writing this article, the latest version of VirtualBox is v6.1.12.

$ sudo apt install virtualbox-6.1

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Install VirtualBox from the Source Code

The source code of VirtualBox is available for free. This allows the ability to build VirtualBox manually from the source. This is a relatively lengthy and complex process that requires more hardware resources and effort. Installing VirtualBox using this method is not recommended, as you will have to follow it again to update VirtualBox. Full information on building VirtualBox on Linux can be found at the VirtualBox wiki page.

First, install the build dependencies.

$ sudo apt install


$ acpica-tools chrpath doxygen g -multilib libasound2-dev libcap-dev


$ libcurl4-openssl-dev libdevmapper-dev libidl-dev libopus-dev libpam0g-dev


$ libpulse-dev libqt5opengl5-dev libqt5x11extras5-dev libsdl1.2-dev libsdl-ttf2.0-dev


$ libssl-dev libvpx-dev libxcursor-dev libxinerama-dev libxml2-dev libxml2-utils


$ libxmu-dev libxrandr-dev make nasm python3-dev python-dev qttools5-dev-tools


$ texlive texlive-fonts-extra texlive-latex-extra unzip xsltproc


$ default-jdk libstdc 5 libxslt1-dev linux-kernel-headers makeself


$ mesa-common-dev subversion yasm zlib1g-dev

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

The following build dependencies should also be installed if you are running the 64-bit version of Ubuntu.

$ sudo apt install lib32z1 libc6-dev-i386 lib32gcc1 lib32stdc 6

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

For Python hacking, consider installing the following packages, as well.

$ sudo apt install pylint python3-psycopg2 python3-willow python-pil

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Building VirtualBox on a 64-bit host system still requires all the 32-bit libraries and build tools. In the case of the 64-bit Ubuntu version, it has some missing shared libraries. Run the following command to fix it.

$ sudo ln -s libX11.so.6 /usr/lib32/libX11.so

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

$ sudo ln -s libXTrap.so.6 /usr/lib32/libXTrap.so

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

$ sudo ln -s libXt.so.6 /usr/lib32/libXt.so

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

$ sudo ln -s libXtst.so.6 /usr/lib32/libXtst.so

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

$ sudo ln -s libXmu.so.6 /usr/lib32/libXmu.so

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

$ sudo ln -s libXext.so.6 /usr/lib32/libXext.so

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Download the latest source code of VirtualBox here.

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Extract the compressed archive.

$ tar -xvf VirtualBox-6.1.12a.tar.bz2

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Change the current directory to the extracted source and run the configuration script. Note that the “–disable-hardening” flag should not be used if you intend to redistribute or use the build for production.

$ ./configure –disable-hardening

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Load the environment setup script.

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

It is now finally time to build VirtualBox. Run the following command to build a release package of VirtualBox.

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

If the build was not hardened, VirtualBox can be run from the “out/linux.amd64/release/bin” directory under the source code directory. However, the VirtualBox kernel modules must be built and installed first. To do so, enter the following code.

$ cd out/linux.amd64/release/bin/src

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Load the modules.

Finally, launch VirtualBox.

Using VirtualBox

VirtualBox is very user-friendly. All of its functions are simple, yet VirtualBox offers full control over almost every aspect of a virtual machine. Here, we will check out how to create and launch a VirtualBox virtual machine.

Before creating a virtual machine, install the VirtualBox extension pack. Download it from the VirtualBox download page here.

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Once the package is downloaded, install the package using the following command.

$ sudo VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-6.1.12.vbox-extpack

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

The installation will ask for the PUEL license agreement. Enter “y” to continue.

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

The installation should complete without any issue.

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

It is now time to create a virtual machine. Launch VirtualBox.

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Click “New” to create a new virtual machine.

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Give the new virtual machine a suitable name. In this example, I will create an Ubuntu virtual machine, so I will select the “Type” as “Linux” and the “Version” as “Ubuntu_64.”

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Next, assign the amount of RAM space you want the virtual machine to take. It is recommended to assign 4GB of RAM.

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

VirtualBox will ask for a hard disk file creation for the virtual machine. The file will act as physical storage. Select “Create a virtual hard disk now.”

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

You will be asked for the file type of the virtual hard disk. For most, the VDI format will be more than enough.

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

VirtualBox will ask how the virtual storage file will be created. If “Dynamically allocated” is selected, then the storage file will grow as it is used more. If “Fixed size” is selected, the file will use the maximum storage on the physical drive. The benefit of the second option is that it offers more performance for the virtual machine.

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Select the size and location of the virtual hard disk file.

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

The virtual machine is now ready to boot! You will need to have the Ubuntu image file at hand, as the machine will ask for a boot device/image. For the remainder of the installation, check out this awesome guide on how to install Ubuntu 20.04 on VirtualBox here.

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Final Thoughts

There are plenty of options available to tweak the behavior of VirtualBox and virtual machines. Feel free to explore these. There are plenty of online materials available on how to use VirtualBox to its fullest capacity.

Enjoy!

About the author

Install and Use VirtualBox in Ubuntu 20.04 ubuntu Virtualbox

Sidratul Muntaha

Student of CSE. I love Linux and playing with tech and gadgets. I use both Ubuntu and Linux Mint.