05-16-07 06:14 AM
After takin' a swig o' grog, jamiil belched out this bit o' wisdom:
> After installing Linux-Debian Sarge I have lost the use of the mouse
> trackball in my Microsoft Intelimouse PS/2 compatible , does anyone
> know how to solve this problem?
Not sure. Usually the installer picks up the devices if they're plugged
in when you install, even if they're USB. On my Gentoo box, I had to
add this to xorg.conf, maybe you need to do something similar, or use
that other method somebody mentioned:
Section "InputDevice"
Identifier "Marble Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "PS/2"
Option "Buttons" "4"
Option "Emulate3Buttons" "true"
EndSection
Section "InputDevice"
Identifier "Intellimouse Mouse"
Driver "mouse"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "IMPS/2"
Option "Buttons" "3"
Option "ZAxisMapping" "3"
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Marble Mouse"
InputDevice "Intellimouse Mouse"
EndSection
This gives me two mice.
--
Windows XP. The operating system with a load in its pants.
[ Post a follow-up to this message ]
|