Update cheatsheets

This commit is contained in:
ivuorinen
2025-08-14 00:20:38 +00:00
parent 2a42e87c5b
commit 14574efabf
5 changed files with 43 additions and 2 deletions

25
tldr/vboxmanage-modifyvm Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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`