Last active
November 21, 2023 13:04
-
-
Save bmaupin/1ccd07720e631e2cdffa to your computer and use it in GitHub Desktop.
Install VirtualBox 5 in Ubuntu/Debian
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
| # https://www.virtualbox.org/wiki/Linux_Downloads#Debian-basedLinuxdistributions | |
| wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add - | |
| sudo sh -c 'echo "deb http://download.virtualbox.org/virtualbox/debian `lsb_release -c | awk '"'"'{print $2}'"'"'` contrib" > /etc/apt/sources.list.d/virtualbox.list' | |
| sudo apt-get update | |
| sudo apt-get install dkms virtualbox-5.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment