Found. VBoxManage (CLI VirtualBox tool) has an optional argument --paravirtprovider . You can add this to the vb.customize call:
Vagrant.configure(2) do |config| config.vm.box = "ubuntu/trusty64" config.vm.provider "virtualbox" do |vb| vb.customize [ "modifyvm", :id, "--memory", "1024", "--paravirtprovider", "kvm", # for linux guest "--cpus", "2" ] end end
Other CPU settings are also available in this way, vb.customize accepts the same argument as VBoxManage . See VboxManage --help for a list of all options.
selfawaresoup
source share