Skip to content

Instantly share code, notes, and snippets.

@jaytaph
Created October 10, 2012 07:51
Show Gist options
  • Save jaytaph/3863869 to your computer and use it in GitHub Desktop.
Save jaytaph/3863869 to your computer and use it in GitHub Desktop.
my first Vagrantfile
Downloads the lucid32 box, clones a new virtual machine and starts it.
Start the machine by using "vagrant up".
Log into the machine by using "vagrant ssh".
Shutdown the machine by "vagrant destroy".
Vagrant::Config.run do |config|
config.vm.box = 'lucid32'
config.vm.box_url = 'http://files.vagrantup.com/lucid32.box'
config.vm.boot_mode = :gui
end
@jaytaph
Copy link
Author

jaytaph commented Oct 14, 2012

Downloads the lucid32 box, clones a new virtual machine and starts it.

  • Start the machine by using "vagrant up".
  • Log into the machine by using "vagrant ssh".
  • Shutdown the machine by "vagrant destroy".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment