Created
January 23, 2011 10:19
-
-
Save mchelen/791963 to your computer and use it in GitHub Desktop.
Install VirtualBox 4.0.x in Ubuntu 10.10 Maverick
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
# Install VirtualBox 4.0.x in Ubuntu 10.10 Maverick | |
# Author: Mike Chelen http://twitter.com/mikechelen | |
# License: CC0 Public Domain | |
# Sources: http://www.virtualbox.org/wiki/Linux_Downloads | |
# add virtualbox repository quietly | |
echo "deb http://download.virtualbox.org/virtualbox/debian maverick contrib" | sudo tee /etc/apt/sources.list.d/virtualbox.list > /dev/null | |
# download and add key | |
wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add - | |
# update repository info | |
sudo apt-get update | |
# install virtualbox 4 and dkms | |
sudo apt-get install virtualbox-4.0 dkms | |
# done! may need to reboot | |
sudo reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment