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)

See http://qemu-buch.de/d/Gast-Systeme/_x86-Architektur/_BSD-Unix-Systeme for further information.


Hosted by http://qemu-buch.de

OpenbsdOnQemu (last edited 2010-07-31 10:04:25 by Rowa)