Skip to content

Instantly share code, notes, and snippets.

@pau
Created July 16, 2012 06:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pau/3121056 to your computer and use it in GitHub Desktop.
Save pau/3121056 to your computer and use it in GitHub Desktop.
Installing Virtual Box and Vagrant
$ cd /tmp
$ wget http://download.virtualbox.org/virtualbox/4.1.18/virtualbox-4.1_4.1.18-78361~Ubuntu~precise_amd64.deb
$ sudo dpkg -i virtualbox-4.1_4.1.18-78361~Ubuntu~precise_amd64.deb
$ wget http://files.vagrantup.com/packages/eb590aa3d936ac71cbf9c64cf207f148ddfc000a/vagrant_1.0.3_x86_64.deb
$ sudo dpkg -i vagrant_1.0.3_x86_64.deb
$ sudo ln -s /opt/vagrant/bin/vagrant /usr/local/bin/
$ vagrant box add lucid32 http://files.vagrantup.com/lucid32.box
$ mkdir salt-vm
$ cd salt-vm
$ vagrant init lucid32
$ vagrant up
$ vagrant ssh
vagrant@lucid32$ sudo aptitude update
vagrant@lucid32$ sudo aptitude upgrade
vagrant@lucid32$ sudo aptitude install git-core python-pip python-virtualenv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment