Last active
August 29, 2015 14:19
-
-
Save anubhavsinha/55e47eb94a382aea77a1 to your computer and use it in GitHub Desktop.
install virtual box 4.3 on Ubuntu 14.04 LTS
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
| sudo sh -c "echo 'deb http://download.virtualbox.org/virtualbox/debian '$(lsb_release -cs)' contrib non-free' > /etc/apt/sources.list.d/virtualbox.list" && wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add - && sudo apt-get update && sudo apt-get install virtualbox-4.3 dkms | |
| # There are a few extra features, such as USB support, which are closed-source and distributed in separate extension packs. | |
| wget http://download.virtualbox.org/virtualbox/4.3.10/Oracle_VM_VirtualBox_Extension_Pack-4.3.10-93012.vbox-extpack | |
| sudo VBoxManage list extpacks | |
| sudo VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-4.3.10-93012.vbox-extpack | |
| sudo VBoxManage list extpacks | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment