‹ jan0sch.de

Vagrant, Virtualbox, 32bit systems and more than one cpu

2014-06-03

If you spin up a 32bit guest system within vagrant using the virtualbox provider, setting the number of cpus is not enough. Meaning that the following won’t do:

config.vm.provider “virtualbox” do |vb| vb.cpus = 2 end

You’ll have to enable ioapic additionally.

config.vm.provider "virtualbox" do |vb|
  vb.customize ["modifyvm", :id, "--ioapic", "on"]
  vb.cpus = 2
end