1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/vboxmanage.md
Karthikeyan Vaithilingam 78f98f39fe
vboxmanage: move to common. (#4549)
Signed-off-by: Karthikeyan Vaithilingam <seenukarthi@gmail.com>
2020-10-07 21:30:09 +01:00

33 lines
831 B
Markdown

# VBoxManage
> Command-line interface to VirtualBox.
> Includes all the functionality of the GUI and more.
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-intro>.
- 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`
- Update VBox extension packs:
`VBoxManage extpack install --replace {{VboxExtensionPackFileName}}`