Skip to content

Instantly share code, notes, and snippets.

@abhi-bit
Created April 17, 2014 12:43
Show Gist options
  • Save abhi-bit/10980444 to your computer and use it in GitHub Desktop.
Save abhi-bit/10980444 to your computer and use it in GitHub Desktop.
precise64 Vagrantfile
Vagrant.configure("2") do |config|
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
config.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", "1024"]
vb.customize ["modifyvm", :id, "--cpus", "8"]
vb.customize ["modifyvm", :id, "--ioapic", "on"]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment