How to change the hypervisor to Apple in Vagrant

config.vm.provider :parallels do |prl|
prl.name = "simple-linux-centos82"
prl.customize ["set", :id, "--hypervisor-type", "apple"]
prl.check_guest_tools = false
prl.memory = 1024
prl.cpus = 1
end
Seems to work.
 
config.vm.provider :parallels do |prl|
prl.name = "simple-linux-centos82"
prl.customize ["set", :id, "--hypervisor-type", "apple"]
prl.check_guest_tools = false
prl.memory = 1024
prl.cpus = 1
end
Seems to work.
Thank you, it does work :)
I have done some benchmarking though and I realized the Parallels hypervisor is actually much better when it comes to resource usage. Apple's hypervisor often uses double the amount of RAM.
 
Back
Top