snippetbashTip
VBoxManage controlvm — Change the state and the settings of a currently running virtual machine. More information: <https:/
Viewed 0 times
vboxmanage controlvmthecommandandstateclichange
Problem
How to use the
VBoxManage controlvm command: Change the state and the settings of a currently running virtual machine. More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-controlvm>.Solution
VBoxManage controlvm — Change the state and the settings of a currently running virtual machine. More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-controlvm>.Temporarily stop the execution of a virtual machine:
VBoxManage controlvm {{uuid|vm_name}} pauseResume the execution of a paused virtual machine:
VBoxManage controlvm {{uuid|vm_name}} resumePerform a cold reset on the virtual machine:
VBoxManage controlvm {{uuid|vm_name}} resetPoweroff a virtual machine with the same effect as pulling the power cable of a computer:
VBoxManage controlvm {{uuid|vm_name}} poweroffShutdown the virtual machine and save its current state:
VBoxManage controlvm {{uuid|vm_name}} savestateSend an ACPI (Advanced Configuration and Power Interface) shutdown signal to the virtual machine:
VBoxManage controlvm {{uuid|vm_name}} acpipowerbuttonSend command to reboot itself to the guest OS:
VBoxManage controlvm {{uuid|vm_name}} rebootShutdown down the virtual machine without saving its state:
VBoxManage controlvm {{uuid|vm_name}} shutdownCode Snippets
Temporarily stop the execution of a virtual machine
VBoxManage controlvm {{uuid|vm_name}} pauseResume the execution of a paused virtual machine
VBoxManage controlvm {{uuid|vm_name}} resumePerform a cold reset on the virtual machine
VBoxManage controlvm {{uuid|vm_name}} resetPoweroff a virtual machine with the same effect as pulling the power cable of a computer
VBoxManage controlvm {{uuid|vm_name}} poweroffShutdown the virtual machine and save its current state
VBoxManage controlvm {{uuid|vm_name}} savestateContext
tldr-pages: common/VBoxManage controlvm
Revisions (0)
No revisions yet.