mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
26 lines
602 B
Plaintext
26 lines
602 B
Plaintext
---
|
|
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`
|