“How to Install VirtualBox” on Ubuntu 20.04
“How to Install VirtualBox” on Ubuntu 20.04

“How to Install VirtualBox” on Ubuntu 20.04
“How to Install VirtualBox” on Ubuntu 20.04
“How to Install VirtualBox” on Ubuntu 20.04
- "How to Install VirtualBox" on Ubuntu 20.04
- "How to Install VirtualBox" on Ubuntu 20.04
- “How to Install VirtualBox” on Ubuntu 20.04
- N
- “How to Install VirtualBox” on Ubuntu 20.04
- Disqus
- Search
- “How to Install VirtualBox” on Ubuntu 20.04
Linux How to, Tutorials, Guides, News, Tips and Tricks, WordPress, see, blogging

“How to Install VirtualBox” on Ubuntu 20.04
June 2, 2020 by Editorial Staff
Contents [hide]
- 1 “How to Install VirtualBox” on Ubuntu 20.04
- 2 Putting in VirtualBox from Ubuntu repositories #
- 3 Putting in VirtualBox from Oracle repositories #
- 3.1 Installing VirtualBox Extension Pack #
- 4 Starting VirtualBox #
- 5 Conclusion #
“How to Install VirtualBox” on Ubuntu 20.04
We hope this post helped you to find out “How to Install VirtualBox” on Ubuntu 20.04
VirtualBox is open-source cross-platform virtualization software program that permits you to run a number of visitor working techniques (digital machines) concurrently. Usually, Virtualbox is utilized by desktop customers as a testing and growth atmosphere.
On this tutorial, we are going to present you two methods to put in VirtualBox on Ubuntu 20.04:
- From the usual Ubuntu repositories.
- From the Oracle repositories.
The VirtualBox bundle that’s accessible within the Ubuntu multiverse repository will not be the newest model. Oracle repositories all the time include the most recent launched model.
Putting in VirtualBox from Ubuntu repositories #
Putting in VirtualBox from the Ubuntu repositories is an easy course of. Run the next instructions as root or person with sudo privileges to replace the bundle index and set up VirtualBox and Extension Pack:
sudo apt updatesudo apt install virtualbox virtualbox-ext-pack
That’s it! You have got efficiently put in VirtualBox in your Ubuntu machine, and you can begin utilizing it.
Putting in VirtualBox from Oracle repositories #
On the time of writing this text, the most recent model of VirtualBox is model 6.1.x.
To put in VirtualBox from the Oracle repositories, observe these steps:
Step 1. Import the Oracle public keys utilizing the next instructions:
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- |
sudo apt-key add -wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- |
sudo apt-key add -
Step 2. Each instructions ought to output OK
, which signifies that the keys are efficiently imported, and packages from this repository might be thought of trusted.
Add the VirtualBox APT repository to your system:
echo "deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian $(lsb_release -cs) contrib" |
sudo tee -a /etc/apt/sources.list.d/virtualbox.list $(lsb_release -cs)
Stop 3. prints the Ubuntu codename. For example, if you have Ubuntu version 20.04 the command will print focal
.
Update the packages list and install the latest version of VirtualBox:
sudo apt update
sudo apt install virtualbox-6.1
Installing VirtualBox Extension Pack #
The VirtualBox Extension Pack offers a number of helpful functionalities for visitor machines equivalent to digital USB 2.Zero and three.Zero units, assist for RDP, photos encryption, and extra.
Download the extension pack file by typing:
wget https://download.virtualbox.org/virtualbox/6.1.8/Oracle_VM_VirtualBox_Extension_Pack-6.1.8.vbox-extpack
Be certain that the model of the Extension Pack matches with the VirtualBox model.
When the obtain is accomplished, import the extension pack utilizing the next command:
sudo VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-6.1.8.vbox-extpack
You will be presented with the Oracle license and prompted to accept their terms and conditions.
Do you agree to these license terms and conditions (y/n)?
Type y
and hit Enter
. Once the installation is completed, you will see the following output:
0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
Successfully installed "Oracle VM VirtualBox Extension Pack".
Starting VirtualBox #
VirtualBox may be launched from the command line by typing virtualbox
or by clicking on the VirtualBox icon (Actions -> VirtualBox
).