-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
Cannot create the VM with Vagrant using more than 2048MB of RAM and 1 CPU, also we need to disable PAE by inserting in the Vagrantfile, the only working configuration is this:
config.vm.provider "virtualbox" do |vb|
vb.name = "azdora"
vb.memory = 2048
vb.cpus = 1
vb.customize ["modifyvm", :id, "--pae", "off"]
endThe system is configured as:
host : Scientific Linux release 6.6 (Carbon)
VBox : Oracle virtualbox 4.3.24r98716
Reactions are currently unavailable