1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-02 07:55:22 +02:00
tldr/pages/common/vboxmanage.md

23 lines
557 B
Markdown
Raw Normal View History

2019-06-03 22:17:57 +10:00
# VBoxManage
> Command-line interface to VirtualBox.
> Includes all the functionality of the GUI and more.
> Some subcommands such as `vboxmanage startvm` have their own usage documentation.
2019-06-03 22:17:57 +10:00
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-intro>.
- Display version:
2019-06-03 22:17:57 +10:00
`VBoxManage --version`
2019-06-03 22:17:57 +10:00
- Display help:
2019-06-03 22:17:57 +10:00
`VBoxManage --help`
2019-06-03 22:17:57 +10:00
- Display help for a VBoxManage subcommand (like `starvm`, `clonevm`, `import`, `export`, etc.):
2019-06-03 22:17:57 +10:00
`VBoxManage --help {{subcommand}}`
2019-06-03 22:17:57 +10:00
- Execute a VboxManage subcommand:
2019-06-03 22:17:57 +10:00
`VBoxManage {{subcommand}}`