Skip to content

Instantly share code, notes, and snippets.

@fbazzarella
Last active March 31, 2016 01:14
Show Gist options
  • Save fbazzarella/27698b710746cc4b3d65 to your computer and use it in GitHub Desktop.
Save fbazzarella/27698b710746cc4b3d65 to your computer and use it in GitHub Desktop.
#!/bin/bash
apt-get install -y libsdl1.2debian
DESTINATION="/tmp/vagrant/"
mkdir -p $DESTINATION
cd $DESTINATION
wget -O virtualbox.deb http://download.virtualbox.org/virtualbox/5.0.16/virtualbox-5.0_5.0.16-105871~Ubuntu~trusty_amd64.deb
wget -O vagrant.deb https://releases.hashicorp.com/vagrant/1.8.1/vagrant_1.8.1_x86_64.deb
dpkg -i virtualbox.deb vagrant.deb
rm -rf $DESTINATION
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment