I am trying to run my .qcow2
image in Mac OS X with qemu-system-x86_64
, it works perfectly fine on my Debian machine but for memory problems I need to move it to a Mac OS X Catalina machine. I installed qemu-system-x86_64
through brew
and then when I launch my machine with
qemu-system-x86_64 \
> -m 8G \
> -vga virtio \
> -show-cursor \
> -usb \
> -device usb-tablet \
> -enable-kvm \
> -drive file=/Volumes/enricoWD/transfer_home_laptop/dxcator_home_backup_feb2020/diag-stage.qcow2,if=virtio \
> -accel hvf \
> -cpu host
it starts but after 4 seconds crashes with:
vmx_write_mem: mmu_gva_to_gpa ffff9ac27b23fcdc failed
Abort trap: 6
I saw other users encountered this problem here, but no answer provided.
If anybody has a clue, or suggestion for other ways to run my .qcow2 machine on Mac OS X it would be great! Thanks a lot in advance!
MacPorts
version perhaps. – Mutism