HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

VBoxManage modifyvm — Change settings for a virtual machine that is stopped. More information: <https://www.virtualbox.org

Submitted by: @import:tldr-pages··
0
Viewed 0 times
virtualcommandclichangesettingsmachineforvboxmanage modifyvm

Problem

How to use the VBoxManage modifyvm command: Change settings for a virtual machine that is stopped. More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-modifyvm>.

Solution

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

Code Snippets

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

Context

tldr-pages: common/VBoxManage modifyvm

Revisions (0)

No revisions yet.