Skip to content

Instantly share code, notes, and snippets.

@jjb
Created November 24, 2013 06:47
Show Gist options
  • Save jjb/7624104 to your computer and use it in GitHub Desktop.
Save jjb/7624104 to your computer and use it in GitHub Desktop.
Vagrant is a way to manage virtual machine environments for development. It's a fantastic elegant tool. On their front page they have a set of 3 commands for setting up your first environment, and I think it's way too simplistic and kind of unhelpful, because it leaves you back at your own host OS shell doing nothing. Here's a better set of comm…
gem install vagrant
vagrant box add base http://files.vagrantup.com/lucid32.box
mkdir my_first_project
cd my_first_project
vagrant init
vagrant up
vagrant ssh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment