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-export.md
Lena 908c9366c0
vboxmanage-*, exiqgrep: update page (#11604)
* exiqgrep: update page

* vboxmanage-*: update page
2023-11-30 09:27:59 +01:00

24 lines
584 B
Markdown

# vboxmanage-export
> Export virtual machines to a virtual appliance (ISO) or a cloud service.
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-export>.
- Specify the target OVA file:
`VBoxManage export --output {{path/to/filename.ova}}`
- Export in OVF 0.9 legacy mode:
`VBoxManage export --legacy09`
- Export in OVF (0.9|1.0|2.0) format:
`VBoxManage export --{{ovf09|ovf10|ovf20}}`
- Create manifest of the exported files:
`VBoxManage export --manifest`
- Specify a description of the VM:
`VBoxManage export --description "{{vm_description}}"`