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