snippetbashTip
VBoxManage — Interface with VirtualBox. Includes all the functionality of the GUI and more. Some subcommands such
Viewed 0 times
commandincludesvirtualboxallinterfacevboxmanagecliwith
Problem
How to use the
VBoxManage command: Interface with VirtualBox. Includes all the functionality of the GUI and more. Some subcommands such as startvm have their own usage documentation. More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-intro>.Solution
VBoxManage — Interface with VirtualBox. Includes all the functionality of the GUI and more. Some subcommands such as startvm have their own usage documentation. More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-intro>.List all VirtualBox virtual machines:
VBoxManage list vmsShow information about a particular virtual machine:
VBoxManage showvminfo {{name|uuid}}Start a virtual machine:
VBoxManage startvm {{name|uuid}}Start a virtual machine in headless mode:
VBoxManage startvm {{name|uuid}} --type headlessShutdown the virtual machine and save its current state:
VBoxManage controlvm {{name|uuid}} savestateShutdown down the virtual machine without saving its state:
VBoxManage controlvm {{name|uuid}} poweroffUpdate VBox extension packs:
VBoxManage extpack install --replace {{VboxExtensionPackFileName}}Display help:
VBoxManage --helpCode Snippets
List all VirtualBox virtual machines
VBoxManage list vmsShow information about a particular virtual machine
VBoxManage showvminfo {{name|uuid}}Start a virtual machine
VBoxManage startvm {{name|uuid}}Start a virtual machine in headless mode
VBoxManage startvm {{name|uuid}} --type headlessShutdown the virtual machine and save its current state
VBoxManage controlvm {{name|uuid}} savestateContext
tldr-pages: common/VBoxManage
Revisions (0)
No revisions yet.