Trying to install OpenBSD in gnome boxes

Trying to install it. I can’t use the keyboard at all. Any ideas why?

Ok I have managed to get it working like this:

sudo virt-install \
  --name=openbsd \
  --os-variant=openbsd7.5 \
  --virt-type=kvm \
  --memory=2048,maxmemory=2048 \
  --vcpus=2,maxvcpus=2 \
  --cpu host \
  --network=default,model=virtio \
  --disk path=/path/openbsd.qcow2,size=40,bus=virtio,format=qcow2 \
  --graphics=spice \
  --cdrom=/path/cd76.iso \
  --machine=q35 \
  --input=type=keyboard,bus=usb  

It needs the usb keyboard, not the default ps/2

3 Likes

good to see you solved it

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.