Changes between Initial Version and Version 1 of Ticket #11160, comment 6
- Timestamp:
- Dec 11, 2014 10:04:22 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11160, comment 6
initial v1 1 1 The correct solution to this is to export as ovf v1 either from the UI, or when running an export from the command line it appears to default to v1. 2 2 3 4 {{{ 3 5 vboxmanage import futsy-v2.ova 6 }}} 7 4 8 5 9 # A vm's name can be different than the OVA name 10 11 {{{ 6 12 vboxmanage list vms 13 }}} 14 7 15 8 16 # VM_NAME from listing above 17 18 {{{ 9 19 vboxmanage export VM_NAME -o futsy-v1.ova 20 }}} 21 10 22 11 23 # --lax option basically tells the ovftool not to fail on errors, just make them warnings 24 25 {{{ 12 26 ovftool --lax futsy-v1.ova futsy-v1.vmx 27 }}} 28 13 29 14 30 This should import and work without issue in VMware Workstation/Fusion/ESXi.