From 5a0d376f29588c26b7f2323b7b8c9925ac5097c0 Mon Sep 17 00:00:00 2001 From: Gregor Zurowski Date: Fri, 3 Feb 2017 07:24:13 +0100 Subject: [PATCH] Enable I/O APIC in order to use multiple virtual CPUs See: http://www.virtualbox.org/manual/ch03.html#settings-motherboard Signed-off-by: Gregor Zurowski --- setup/templates/Vagrantfile.erb | 1 + 1 file changed, 1 insertion(+) diff --git a/setup/templates/Vagrantfile.erb b/setup/templates/Vagrantfile.erb index 08a92fe..3178c3b 100644 --- a/setup/templates/Vagrantfile.erb +++ b/setup/templates/Vagrantfile.erb @@ -10,6 +10,7 @@ Vagrant.configure('2') do |config| v.name = '<%= client %>-aem' v.cpus = 2 v.memory = 8192 + v.customize ["modifyvm", :id, "--ioapic", "on"] end config.vm.provision :shell, path: 'setup/update-vm.sh'