NetBSD-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: NetBSD 10.1 on Hetzner - anyone?



On Thu, 2 Jan 2025, Mayuresh wrote:

Thanks. 'vesa on' on boot prompt got me past this and now I have a Hetzner
VPS running 10.1.


Great! I think enabling UEFI in the VM should also work. I base this on what
I see with Qemu. Running Qemu with UEFI (on Ubuntu 24.04.1 LTS, here) always
gives me a console:

```
kvm -enable-kvm -machine ubuntu-q35,accel=kvm -device intel-iommu -m 4g \
  -cpu host -smp cpus=4,cores=2,threads=2 -bios /usr/share/ovmf/OVMF.fd \
  -drive file=netbsd.qcow2,if=none,id=hd0 -device virtio-blk-pci,drive=hd0 \
  -object rng-random,filename=/dev/urandom,id=viornd0 -device virtio-rng-pci,rng=viornd0 \
  -netdev user,id=net0,hostfwd=tcp::5555-:22 -device virtio-net-pci,netdev=net0 \
  -device virtio-gpu \
  "$@"
```

(you can change `virtio-gpu' to `virtio-vga')

but, if I drop the `-bios /usr/share/ovmf/OVMF.fd' part, ie. boot in BIOS mode,
then I get the same panic.

HTH,

-RVP


Home | Main Index | Thread Index | Old Index