How to install Virtual box in Ubuntu 16.04?
Asked
Active
Viewed 429 times
0
1 Answers
2
To Install Oracle Virtualbox:
Step 1: Open your favorite editor (nano in my case) and create the file (virutalbox.list) to add repository as:
sudo nano /etc/apt/sources.list.d/virtualbox.list
Add the following and save the file
deb http://download.virtualbox.org/virtualbox/debian xenial contrib
Step 2: Download and add the key
wget https://www.virtualbox.org/download/oracle_vbox_2016.asc
sudo apt-key add oracle_vbox_2016.asc
Step 3: Update software sources (as usual)
sudo apt-get update
Step 4: Finally, Install Virtualbox (current version is 5.1)
sudo apt-get install virtualbox-5.1
Finally:
To run Virtualbox Open Dash (press SUPER key) and type something like "virtual" then click on Oracle VM VirtualBox icon.

Kaz Wolfe
- 34,122
- 21
- 114
- 172

Vishwanath
- 361
sudo apt install virtualbox
. – Takkat Sep 25 '17 at 10:22