2023-11-29 21:46:27 +00:00
|
|
|
# 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>.
|
|
|
|
|
2023-11-30 08:27:59 +00:00
|
|
|
- Specify the target OVA file:
|
2023-11-29 21:46:27 +00:00
|
|
|
|
|
|
|
`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`
|
|
|
|
|
2023-11-30 08:27:59 +00:00
|
|
|
- Specify a description of the VM:
|
2023-11-29 21:46:27 +00:00
|
|
|
|
2023-11-30 08:27:59 +00:00
|
|
|
`VBoxManage export --description "{{vm_description}}"`
|