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

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -