I have a Ubuntu virtual machine that is configured to enable VT-x, 6 processors and 25 GB of RAM.
Inside this virtual machine, I am trying to start a vagrant machine with the following configuration:
master.vm.box = "precise32" master.vm.provider "virtualbox" do |vb| vb.customize ["modifyvm", :id, "--cpuexecutioncap", "80"] vb.memory = 10000 vb.customize ["modifyvm", :id, "--cpus", "2"] vb.customize ["modifyvm", :id, "--ioapic", "on"] end
When I start a tramp, I get a VT-x error not included.
I tried both the 32-bit and 64-bit versions of Vagrant, but still no luck.
Any idea how I can run a Vagrant machine inside Virtualbox?
virtual-machine vagrant virtualbox
user2230605
source share