Skip to content

Instantly share code, notes, and snippets.

@andrezrv
Created February 11, 2014 21:11
Show Gist options
  • Save andrezrv/8944254 to your computer and use it in GitHub Desktop.
Save andrezrv/8944254 to your computer and use it in GitHub Desktop.
Add CPUs to Vagrant VM
config.vm.provider :virtualbox do |v|
v.customize ["modifyvm", :id, "--memory", "3072"]
v.customize ["modifyvm", :id, "--cpus", "4"]
v.customize ["modifyvm", :id, "--ioapic", "on"]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment