Open RanchoHam opened 2 years ago
I found that modifying the Vagrantfile by adding the following line:
v.customize "pre-boot", ["modifyvm", :id, "--cpus", 2],
to the
config.vm.provider :virtualbox do |v|
loop
will modify the the number of CPUs allocated to the VM.
@RanchoHam I ran into this as well. The proper way to do this in Vagrant is to use v.cpus = 2
in the config.vm.provider
loop.
why this issue is still open ?? I think it got resolved by now @RanchoHam ?
Environment:
Problem: In the drupal directory
vagrant up
fails with the message:Manual Solution:
How can the base box be modified to use 2 processors?