Having a play with OmniOS, as a possible S11.4 server replacement. I am investigating bhyve

Following the OminOS example (debian guest) I get stuck at zoneadm install, it just fails to start

Connecting to the console shows "ZONE Halted" and the root/tmp/init.log shows "vm_create: No such file or directory"

So, I am missing something. I can't find any packages ownong vm_create (pk search), nor cn I find reference to this on the web. So, starting here .....
#omnios #illumos #tribblix #bhyve

@ytc1 what does your zone configuration look like?
@astade
---8< part 1
create -b
set zonepath=/zones/bhyve
set brand=bhyve
set autoboot=false
set ip-type=exclusive
add fs
set dir="/export/iso/debian-13.1.0-amd64-DVD-1.iso"
set special="/export/iso/debian-13.1.0-amd64-DVD-1.iso"
set type="lofs"
add options ro
add options nodevices
end
add net
set allowed-address="10.0.0.112/24"
set physical="bhyve0"
end
add device
set match="/dev/zvol/rdsk/rpool/bhyve0"
end
add attr
set name="bootdisk"
set type="string"
set value="rpool/bhyve0"
end
---8<
@astade
---8< part 2
add attr
set name="cdrom"
set type="string"
set value="/export/iso/debian-13-amd64-DVD-1.iso"
end
add attr
set name="acpi"
set type="string"
set value="off"
end
add attr
set name="bootrom"
set type="string"
set value="BHYVE_RELEASE"
end
add attr
set name="vnc"
set type="string"
set value="on"
end
---8<