1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-17 16:15:53 +02:00

vboxmanage-modifyvm: add page (#17581)

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
This commit is contained in:
Daniel Berlin 2025-08-12 20:30:59 -04:00 committed by GitHub
parent e17b40cb27
commit 13fe11d1ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,20 @@
# VBoxManage modifyvm
> Change settings for a virtual machine that is stopped.
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-modifyvm>.
- Rename the VM:
`VBoxManage modifyvm {{uuid|vm_name}} --name {{new_name}}`
- Adjust memory and CPU:
`VBoxManage modifyvm {{uuid|vm_name}} --memory {{2048}} --cpus {{2}}`
- Enable Remote Display (VRDE):
`VBoxManage modifyvm {{uuid|vm_name}} --vrde on`
- Enable session recording:
`VBoxManage modifyvm {{uuid|vm_name}} --recording on`