FWIW, here's what I have:
Section "InputDevice" Identifier "PS2Mouse" Driver "mouse" Option "Protocol" "PS/2" Option "Device" "/dev/mouse" Option "Emulate3Buttons" EndSection Section "InputDevice" Identifier "USBMouse" Driver "mouse" Option "Protocol" "imps/2" Option "Device" "/dev/input/mice" Option "ZAxisMapping" "4 5" EndSection Section "ServerLayout" Identifier "Panel Layout" Screen 0 "Screen0" 0 0 InputDevice "PS2Mouse" "CorePointer" InputDevice "USBMouse" "SendCoreEvents" InputDevice "Keyboard0" "CoreKeyboard" EndSection I see two differences: You have "AlwaysCore" instead of "SendCoreEvents" in the "ServerLayout", and your /dev settings appear to be different. I have /dev/input/mice on major 13, minor 63. This is different from what is in devices.txt in the linux source, and I seem to remember initially trying those values only to find that they didn't work. The numbers that I'm using have come from http://www.linux-usb.org . If your mouse is working you should be able to cat it (in a console). You also might want to try using the ps/2 protocol instead of the imps/2 protocol (imps is for MS Intellimouse, which is what I have (their operating systems might suck, but they make great mice <g>)). In the depths of that dark day Wed Oct 17, the words of Raul Montagne were the beacon: > Hi! > I have a Toshiba Satellite 1800/S253 with debian-woody running > on it. Everything is running ok, even sound! ...but... > I couldn't make the second mouse to work. > I re-read the howtos and manual...and nothing. > I've got the X 4 working ok > I put the following lines for the mouse: > > > Section "InputDevice" > Identifier "Mouse0" > Driver "mouse" > Option "SendCoreEvents" "true" > Option "Device" "/dev/psaux" > Option "Protocol" "ImPS/2" > Option "Emulate3Buttons" "true" > Option "Buttons" "5" > Option "ZAxisMapping" "4 5" > EndSection > > Section "InputDevice" > Identifier "Mouse1" > Driver "mouse" > Option "SendCoreEvents" "true" > Option "Device" "/dev/usbmouse" > Option "Protocol" "ImPS/2" > Option "Emulate3Buttons" "true" > Option "Buttons" "5" > Option "ZAxisMapping" "4 5" > EndSection > > > Section "ServerLayout" > Identifier "Default Layout" > Screen "Default Screen" > InputDevice "Generic Keyboard" > InputDevice "Mouse0" "CorePointer" > InputDevice "Mouse1" "AlwaysCore" > EndSection > > Section "DRI" > Mode 0666 > EndSection > > # end of XF86Config > > I think the problem is with usb device...nevertheless in the boot it > appears to be working: > > dmesg |grep usb > > usb.c: registered new driver usbdevfs > usb.c: registered new driver hub > usb.c: registered new driver usb_mouse > usbmouse.c: v1.6:USB HID Boot Protocol mouse driver > usb.c: registered new driver hid > usb-ohci.c: USB OHCI at membase 0xc80ff000, IRQ 11 > usb-ohci.c: usb-00:02.0, Acer Laboratories Inc. [ALi] M5237 USB > usb.c: new USB bus registered, assigned bus number 1 > usb-uhci.c: $Revision: 1.259 $ time 11:06:46 Aug 19 2001 > usb-uhci.c: High bandwidth mode enabled > usb-uhci.c: v1.251:USB Universal Host Controller Interface driver > input0: Cypress Sem. PS2/USB Browser Combo Mouse on usb1:2.0 > > any clue? > thanx > talueguito > raul > --