On Mon, 8 Dec 2025 16:53:33 +0000 void <[email protected]> wrote: > Hi, > > I'm running 10.1 amd64 as a vm guest on a bhyve (freebsd) host. > It uses 4x vCPU, 32GB vRAM & 32GB ffs2 disk (it presents to > netbsd as ffs2, but in freebsd it's a zvol). > > The session is wrapped in tmux. > > It boots and runs well. ssh into the vm works fine. > I notice in the console the following errors: > > === > wsconscfg: Cannot open `/dev/ttyEcfg': Device not configured > wsconscfg: Cannot open `/dev/ttyEcfg': Device not configured > wsconscfg: Cannot open `/dev/ttyEcfg': Device not configured > wsconscfg: Cannot open `/dev/ttyEcfg': Device not configured > Keyboard wsconsctl: WSKBDIO_SETENCODING: Permission denied > === > > Is there anything I can/could/should do about them? > --
I've recently deployed NetBSD-10.1 guest with Bhyve and don't remember seeing such errors. How are you booting this VM? I'm using UEFI loader for all my VMs: # cat > /vm-bhyve/.templates/netbsd.conf << 'EOF' loader="uefi" graphics="yes" xhci_mouse="yes" cpu=8 memory=8G network0_type="virtio-net" network0_switch="public" disk0_type="nvme" disk0_name="disk0.img" disk0_dev="file" EOF # vm create -t netbsd -s 64G netbsd-10 # vm install netbsd-10 NetBSD-10.1-amd64.iso # vncviewer -SendClipboard -AcceptClipboard -QualityLevel 9 -CompressLevel 6 -PointerEventInterval 32 10.0.5.1::5900
