On 13 October 2018 at 17:50, Hristo Mihaylov
wrote:
> Hello,
> I'm trying to install OpenBSD 6.3 on Arch Linux.
> This is the crash output:
>
> qemu-system-x86_64:
> /build/qemu/src/qemu-3.0.0/include/exec/memory_ldst_cached.inc.h:85:
> address_space_stw_le_cached: Assertion `addr < cache->len &&
Hello,
I'm trying to install OpenBSD 6.3 on Arch Linux.
This is the start script I'm using:
```
#!/bin/sh
qemu-system-x86_64 \
-enable-kvm \
-m 2048 \
-nic user,model=virtio \
-drive file=openbsd63.qcow2,media=disk,if=virtio \
-cdrom openbsd63.iso \
-display gtk
`