On Tue, 11 Nov 2003 17:29:35 +0100 (CET), arn wrote: > I've see that there are the same errors if I boot with the standard > fedora kernel(missing.....hid and missing....mousedev error in > /var/log/messages). Strange. Does `ls -l /dev/input/mice' show the following? (date and time may differ) crw------- 1 root root 13, 63 Sep 15 15:40 /dev/input/mice In case it doesn't, enter: su cd /dev/input rm -f mice mknod -m 600 mice c 13 63 On my FC1 machine with a USB mouse attached, the `input' module is listed as being used by `hid', which isn't the case on your machine, according to the `lsmod' output. keybdev 2976 0 (unused) mousedev 5556 1 hid 24708 0 (unused) input 5888 0 [keybdev mousedev hid] usb-uhci 26380 0 (unused) usbcore 79168 1 [usb-storage hid usb-uhci] Have you double-checked that /etc/X11/XF86Config(-4) contains an "InputDevice" section which references /dev/input/mice (or /dev/mouse, which should be a link to it)? --Kai