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?).

virtualbox

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

Popular posts from this blog

Lists in Python -

android - can not access to progress bar in an other activity -

html - Not able to access next element of an array javascript -