Skip to content

Instantly share code, notes, and snippets.

@y-yoshinoya
Created January 27, 2015 00:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save y-yoshinoya/413fcd3f6bfcfce54456 to your computer and use it in GitHub Desktop.
Save y-yoshinoya/413fcd3f6bfcfce54456 to your computer and use it in GitHub Desktop.
Install headless VirtualBox and Vagrant for Ubuntu 14.04 Server
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