Skip to content

Instantly share code, notes, and snippets.

@mamonu
Last active March 10, 2025 02:26
convert a qcow2 vm to a VirtualBox vm format
qemu-img convert -O vdi gnome.qcow2 gnome.vdi
#if its a raw image then:
VBoxManage convertdd opnstk.raw VBox.vdi --format VDI
@Master811129
Copy link

Clean and easy. Thank you.

@scothost
Copy link

that wont work, you need

qemu-img convert -f qcow2 gnome.qcow2 -O vdi gnome.vdi

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment