Export machine for virtualbox

Fabio

Renowned Member
Jan 30, 2016
64
1
73
52
density to export a virtual machine made with proxmox to VirtualBox. The virtual machine contains an UBUNTU 22 installation. Is it possible to do this operation? The proxmox is version 5.2
 
I found the disk references in /var/dm-xx where xx is the number connected to my machine (110) do I copy the file /dev/dm-24 to my PC and convert it with qemu?
Is the command qemu-img convert -f raw -O vdi /home/tmp/file_LVM /home/tmp/file_VDI OK?
 
I found the disk references in /var/dm-xx where xx is the number connected to my machine (110) do I copy the file /dev/dm-24 to my PC and convert it with qemu?
No, it's a blockfile that you cannot just copy. You need to run the qemu-img command on your PVE host in order to read the file.
Is the command qemu-img convert -f raw -O vdi /home/tmp/file_LVM /home/tmp/file_VDI OK?
Should work like this:

Code:
qemu-img convert /dev/dm-24 -p -O vdi /tmp/test.vdi