Skip to content

Instantly share code, notes, and snippets.

@karthiks
Created January 28, 2019 11:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karthiks/d36bbf56ceab01481976d7155f5df8a9 to your computer and use it in GitHub Desktop.
Save karthiks/d36bbf56ceab01481976d7155f5df8a9 to your computer and use it in GitHub Desktop.
How to Install VirtualBox 6.0 on Ubuntu 18.10
# 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