Hi On Sat, 29 Mar 2003, Ben Southwood wrote:
> but lsmod shows: > Module Size Used by Not tainted > soundcore 3236 0 (autoclean) > radeon 92472 0 > ds 6624 2 > i82365 22416 2 > pcmcia_core 41408 0 [ds i82365] > irtty 7456 2 (autoclean) > irda 138796 1 (autoclean) [irtty] > nls_cp437 4384 4 (autoclean) > cpuid 1184 0 (unused) > apm 9148 2 > usbmouse 1760 0 (unused) > hid 18816 0 (unused) > orinoco 29568 0 (unused) > hermes 3296 0 [orinoco] > ieee1394 23528 0 (unused) > keybdev 1664 0 (unused) > usbkbd 2848 0 (unused) > input 3072 0 [usbmouse hid keybdev usbkbd] > usb-uhci 20708 0 (unused) > usbcore 48032 0 [usbmouse hid usbkbd usb-uhci] Hm, IIRC I read s.th. about not using the usbmouse module. I am using uhci 26160 0 (unused) hid 19396 0 (unused) usbcore 65792 0 [uhci hid] mousedev 3928 1 I believe that 'mousedev' is what you are missing. > So I used usbmouse as driver: > Section "InputDevice" > Identifier "USB Mice" > Driver "usbmouse" > Option "Protocol" "IMPS/2" > Option "Device" "/dev/input/mice" > Option "ZAxisMapping" "4 5" > Option "Emulate3Buttons" "no" > # Option "Buttons" "5" > > EndSection > It should just be Driver "mouse" > and got this: > (**) Option "Protocol" "PS/2" > (**) Mouse0: Protocol: "PS/2" > (**) Option "CorePointer" > (**) Mouse0: Core Pointer > (**) Option "Device" "/dev/psaux" Are you sure you enabled the right mouse configuration? This should be (**) Option "Device" "/dev/input/mice" > (**) Option "Emulate3Buttons" "no" > (**) Option "ZAxisMapping" "4 5" > (**) Mouse0: ZAxisMapping: buttons 4 and 5 > (**) Mouse0: Buttons: 5 > (EE) No Input driver matching `usbmouse' > (II) Keyboard "Keyboard0" handled by legacy driver > (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE) > > I tried: /etc/init.d/gpm stop as suggested here: > http://www.linuxquestions.org/questions/showthread.php?s=&threadid=12780&highlight=debian+usb+mouse > which returned: > bash: /etc/init.d/gpm: no such file or directory > > I also tried: mknod --mode=600 /dev/input/mice c 13 63 (same post) returned > /dev/input/mice: file exists... Yes, this is (or on my system was) not necessary. It is already there. > > > Where do I go from here? > > Cheers > HTH, Joe.