Created
January 27, 2015 00:49
Install headless VirtualBox and Vagrant for Ubuntu 14.04 Server
This file contains 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
wget -q -O - http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc | sudo apt-key add - | |
sudo sh -c 'echo "deb http://download.virtualbox.org/virtualbox/debian precise non-free contrib" >> /etc/apt/sources.list.d/virtualbox.org.list' | |
sudo apt-get update | |
sudo apt-get install linux-headers-$(uname -r) build-essential virtualbox-4.3 dkms | |
cd /tmp | |
wget http://download.virtualbox.org/virtualbox/4.3.20/Oracle_VM_VirtualBox_Extension_Pack-4.3.20-96996.vbox-extpack | |
sudo VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-4.3.20-96996.vbox-extpack | |
wget https://dl.bintray.com/mitchellh/vagrant/vagrant_1.7.2_x86_64.deb | |
sudo dpkg -i vagrant_1.7.2_x86_64.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment