Import VirtualBox OVA

rolven

New Member
Mar 25, 2024
2
0
1
Hello,
I have a problem with very essential task - importing VM from Virtual Box to Proxmox.
  • I exported various versions of OVA (0.9, 1.0, 2.0) from latest version of VirtualBox 7.0.14 on windows .
  • Then I loaded them into latest version of proxmox 8.1.3. and unTar them
  • and run the import (e.g. OVA v. 1.0)
Code:
qm importovf 100 "Ubuntu64-1.0.ovf" local-lvm

But I got following error

Code:
error during import, cleaning up created resources...
import failed - unable to parse value of 'memory' - type check ('integer') failed - got ''

My OVF example
Code:
<CPU>
          <PAE enabled="false"/>
          <LongMode enabled="true"/>
          <X2APIC enabled="true"/>
          <HardwareVirtExLargePages enabled="true"/>
        </CPU>
        <Memory RAMSize="1024"/>

In this thread https://forum.proxmox.com/threads/import-vm-with-ovf-error.122573/ you suggest to fix it like this

Code:
<CPU>
          <PAE enabled="false"/>
          <LongMode enabled="true"/>
          <X2APIC enabled="true"/>
          <HardwareVirtExLargePages enabled="true"/>
        </CPU>
        <Memory RAMSize="1024" unit="MB"/>

It help, but it give another error message.
Code:
error during import, cleaning up created resources...
import failed - unable to parse value of 'cores' - type check ('integer') failed - got ''

If I fix the CPU and Memory
Code:
<CPU count="4" cores="4">
          <PAE enabled="false"/>
          <LongMode enabled="true"/>
          <X2APIC enabled="true"/>
          <HardwareVirtExLargePages enabled="true"/>
        </CPU>
        <Memory RAMSize="1024" unit="MB"/>
It bring back the memory error
Code:
error during import, cleaning up created resources...
import failed - unable to parse value of 'memory' - type check ('integer') failed - got ''

I think this is basic and common task so it is very frustrating that It is buggy. Please could you help me to solve this problem.

Thank you
 
Last edited:
Hello, I will do it.
This is my first OVA/OVF proxmox importing. So I would like to "fix it" somehow. Can anyone help me please.

I hope that exist any solution bacause it is basic task. It seems to be any problem in OVF format.

Thank for any hint
 
Last edited:

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!