service moused forcestart or calling /usr/sbin/moused directly.Thank you. The following starts the mouse in single user mode on my VM. I do not think the VM sees the mouse as a USB device, so I will see if it also works on my server when I get home.DutchDaemon said:you could try runningservice moused forcestart
# mount rw filesystem
mount -u /
mount -a
# start mouse
service moused start
# stop mouse
service moused stop
I am not aware of any script to run in single user mode that needs the mouse. I was trying to do the reverse- write a script that starts the mouse service in single user mode. Copy-paste is convenient.wblock@ said:What script to run in that mode needs the mouse?
service moused start nor service moused forcestart works for a USB mouse. Both flavors of the command fail with the following error:Starting default mousedmoused: unable to open /dev/psm0: No such file or directory
.
ugen0.3: <Logitech> at usbus0 (disconnected)
ugen0.3: <Logitech> at usbus0
ljboiler said:The devd service is what runs in multi-user mode to watch for things like USB mice getting plugged in and automatically creates a /dev/umsX device for the associated /dev/ugenx.x device. Use usbconfig to poke around to see what your system thinks it has for USB devices.
# mount rw filesystem
mount -u /
mount -a
# detect and configure hardware devices (devd does not need to run after configuring the devices)
service devd start
service devd stop