Skip to content

Commit a99642b

Browse files
committedMay 30, 2014
Updated the Vagrantfile to set RAM to 2GB w/2 virtual CPU's
The default VirtualBox configuration is 512MB w/1 virtual CPU. I was running into insufficient memory problems but quadrupling the memory and doubling the virtual CPU's should be sufficient without over taxing low-horsepower contributors.
1 parent df0507f commit a99642b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎Vagrantfile

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
1717
config.vm.network :forwarded_port, guest: 5000, host: 5000
1818

1919
config.vm.provider "virtualbox" do |vb|
20+
vb.customize ['modifyvm', :id, '--cpus', '2']
21+
vb.customize ['modifyvm', :id, '--ioapic', 'on']
22+
vb.customize ['modifyvm', :id, '--memory', '2048']
23+
2024
# https://github.com/mitchellh/vagrant/issues/1807
2125
# whatupdave: my VM was super slow until I added these:
2226
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]

0 commit comments

Comments
 (0)
Please sign in to comment.