EEfree 发表于 2004-1-12 01:33:21

请问如何解决2.6.x内核下X-window鼠标移动过快问题

在2.6.x内核中X-window鼠标移动速度过快,请问如何解决?
我在XF86Config里面已经加入Option "Resolution" "200",但是
还是不管用。用的是USB罗技鼠标。
谢谢!

Bluedata 发表于 2004-1-12 01:52:53

可以删除一套鼠标配置,如我的XF86Config-4:

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/psaux"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
Identifier "Generic Mouse"
Driver "mouse"
Option "SendCoreEvents" "true"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
EndSection
......

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "Generic Mouse"
EndSection

把红色的部分删除。
页: [1]
查看完整版本: 请问如何解决2.6.x内核下X-window鼠标移动过快问题