osx - How do I change the RAM setting in VirtualBox? -
i work on macbook air 4gb of ram. projects, use ubuntu in virtualbox (by way of vagrant). vms have insufficient ram. virtualbox takes of ram (2gb). can not change limits, slider not work (it frozen?).
you can following in vagrantfile
vagrant.configure("2") |config| # ... other configuration config.vm.provider "virtualbox" |v| v.memory = 1024 end end
this allow 1gb on vm.
Comments
Post a Comment