Oracle VM VirtualBox or simply VirtualBox is a free and open-source for general purpose full virtualization “x86” and “AMD64/Intel64” hardware developed by Oracle Corporation. It is designed to run virtual machines on your physical hardware 🖥️ without reinstalling your operating system that is running. It is available for Windows, macOS, Solaris, OpenSolaris, and Linux based OS such as Ubuntu.

How To Install VirtualBox on Ubuntu 20.04?

VirtualBox is being actively developed by Oracle with frequent releases and has an ever growing list of features, supported guest operating systems and platforms it runs on. You can easily install the latest version of VirtualBox on ubuntu with the following methods GUI or Terminal or Oracleon your system.

GUI (Graphic User Interface)

To install virtualbox on ubuntu via software center or Graphic User Interface:

  1. Open “ubuntu software” application within “menu”
  2. click on “search” button 🔍
  3. Type “virtualbox”
  4. Select “virtualbox” with blue “icon”
  5. Click “install” to start the installation
  6. Wait a few minutes depending your internet speed to complete the installation
  7. After the installation has been completed you can find and open virtualbox in ubuntu menu

Terminal

To install virtualbox on ubuntu via terminal with linux command line:

  1. Open your wonderful “Terminal” or by pressing “Ctrl+Alt+T” button as keyboard shortcut
  2. Get virtualbox package from ubuntu repositories with the following command lines
    sudo apt update
    sudo apt install virtualbox virtualbox-ext-pack
  3. When prompted, enter your account password, and the installation will continue to start
  4. Wait a few minutes or less for virtualbox installation
  5. After virtualbox installation has been completed you can find and open the it in within ubuntu menu to show all the installed applications in your system

Oracle Repository

To install virtualbox on ubuntu via terminal from Oracle Repository:

  1. Open “Terminal” or by pressing “Ctrl+Alt+T” button
  2. Import the Oracle public keys using the following command
    wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
  3. Get virtualbox repository package from oracle with the following command line
    sudo add-apt-repository "deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian $(lsb_release -cs) contrib"
  4. Update the packages list and install the latest version of VirtualBox with the following command line
    sudo apt update
    sudo apt install virtualbox-6.1

    Note, that you may want to change the virtualbox version such as “virtualbox-6.0”

  5. If prompted, enter your account password, and the installation will continue to start
  6. Wait a few minutes or less for virtualbox installation
  7. After virtualbox installation has been completed you can find and open the it in within ubuntu menu to show all the installed applications in your system

Congratulation, you have installed the virtualbox on ubuntu. You may need to install some features of The Extension Pack binaries that are released under Personal Use and Evaluation License if you install virtualbox from oracle repository. You can also install a different software in your system as your desired for collections of applications.

License: CC-BY-SA Creative Commons License
☝️