Last active
August 29, 2015 14:23
-
-
Save bepcyc/03c09a04647ea0712564 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # set 8 cores and 6GB of RAM | |
| Vagrant.configure(2) do |config| | |
| config.vm.define "myvm" do |master| | |
| master.vm.provider :virtualbox do |v| | |
| v.customize ["modifyvm", :id, "--ioapic", "on"] # this one is important for setting cores | |
| v.customize ["modifyvm", :id, "--cpus", 8] | |
| v.customize ["modifyvm", :id, "--memory", 6144] | |
| end | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment