1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 11:53:11 +02:00

vboxmanage: add page (#3072)

This commit is contained in:
Daniel Michaels 2019-06-03 22:17:57 +10:00 committed by Marco Bonelli
parent 0c4fd45829
commit 374622aa64

29
pages/linux/vboxmanage.md Normal file
View file

@ -0,0 +1,29 @@
# 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`