From 374622aa64b60c47715edb708b8ec9f106b503c4 Mon Sep 17 00:00:00 2001 From: Daniel Michaels <32674032+danielmichaels@users.noreply.github.com> Date: Mon, 3 Jun 2019 22:17:57 +1000 Subject: [PATCH] vboxmanage: add page (#3072) --- pages/linux/vboxmanage.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pages/linux/vboxmanage.md diff --git a/pages/linux/vboxmanage.md b/pages/linux/vboxmanage.md new file mode 100644 index 000000000..fad1f7249 --- /dev/null +++ b/pages/linux/vboxmanage.md @@ -0,0 +1,29 @@ +# VBoxManage + +> Command-line interface to VirtualBox. +> Includes all the functionality of the GUI and more. +> More information: . + +- List all VirtualBox virtual machines: + +`VBoxManage list vms` + +- Show 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 headless` + +- Shutdown the virtual machine and save its current state: + +`VBoxManage controlvm {{name|uuid}} savestate` + +- Shutdown down the virtual machine without saving its state: + +`VBoxManage controlvm {{name|uuid}} poweroff`