Created
January 28, 2019 11:00
-
-
Save karthiks/d36bbf56ceab01481976d7155f5df8a9 to your computer and use it in GitHub Desktop.
How to Install VirtualBox 6.0 on Ubuntu 18.10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Open the terminal and run the following commands: | |
# Add VirtualBox 6 repo keys | |
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 - | |
# Enable VirtualBox 6.0 repository | |
sudo add-apt-repository "deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian $(lsb_release -cs) contrib" | |
sudo apt-get update | |
# Install VirtualBox 6.0 | |
sudo apt-get install virtualbox-6.0 -y | |
# Download the virtualbox 6.0 extension pack | |
wget https://download.virtualbox.org/virtualbox/6.0.0/Oracle_VM_VirtualBox_Extension_Pack-6.0.0.vbox-extpack | |
# Install extension pack | |
sudo VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-6.0.0.vbox-extpack | |
# Above command will prompt us to accept Oracle License, so type ‘y’ and hit enter. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment