Installing from a bootable OpenBSD i386 install CD

qemu-img create -f qcow2 ob.img 20G
qemu -hda ob.img -cdrom /dev/cdrom -boot d -net nic,model=pcnet -net user (if using standard qemu)
qemu -hda ob.img -cdrom /tmp/cd43.iso -boot d -net nic,model=pcnet -net user (if using standard qemu and an install-iso)
qemu -hda ob.img -cdrom /dev/cdrom -boot d -no-kqemu -net nic,model=pcnet -net user (if using qemu+kqemu)

If you run qemu without any "-net" you get the default which is "-net nic,model=ne2k_pci -nic user". OpenBSD don't work "inside" of QEMU with that card, the pcnet card works better.

qemu ob.img -net nic,model=pcnet -net user (if using standard qemu)

qemu -no-kqemu ob.img -net nic,model=pcnet -net user (if using qemu+kqemu)

OpenbsdOnQemu (last edited 2008-06-13 10:46:37 by 224-194-103-86)