I have already booted up an OS but find it too slow to work on. Is there a way to increase the RAM which was allocated to it initially?
3 Answers
Pretty easy to do.
- Power down the VM (the guest has to be off, not just not running but with a saved state).
- Discard 'Saved State'
- Open the VM's settings.
- Open the System tab.
- Change the "Base memory" value to however much RAM you want.
Remember, the VM will reserve all the RAM you allocate to it on your host, so make sure you have enough spare RAM. Most modern OSes will deal with the amount of RAM changing just fine, but you may still run in to trouble, so make a snapshot first.
3In addition to Dennis M, to change Vm machine memory settings via command line, I used :
vboxmanage modifyvm "Centos7_Vanila" --memory 1000- Where "Centos7_Vanila" is my VM name.
To Get your imported / listed VMs run following command :
vboxmanage list vms
There is a fast way in terminal, I named the virtual machine "Android 8.1 Oreo", so just modify that on the following command:
vboxmanage modifyvm "Android 8.1 Oreo" --vram 256I had a maximum of 128.
1