HOPE 发表于 2011-9-2 23:33

ThinkPad X301安装Centos 5.6指点杆滚动

默认情况下Centos 5.6是没有TrackPoint的滚动功能的。
vim /etc/X11/xorg.conf
在最后增加如下内容:

Section "ServerLayout"
      Identifier "Default Layout"
      Screen 0 "Screen0" 0 0
      InputDevice "Keyboard0" "CoreKeyboard"
      InputDevice "Trackpoint"
      InputDevice "Synaptics" "CorePointer"
EndSection

Section "InputDevice"
      Identifier "Trackpoint"
      Driver "mouse"
      Option "CorePointer"
      Option "Device" "/dev/input/mice"
      Option "Protocol" "ImPS/2"
      Option "ZAxisMapping" "4 5"
      Option "EmulateWheel" "true"
      Option "EmulateWheelButton" "2"
EndSection

Section "InputDevice"
Identifier "Synaptics"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/input/event1"
Option "Protocol" "auto-dev"
Option "Emulate3Buttons" "yes"
Option "SHMConfig" "on"
EndSection

然后重启X Window就可以了。

gokimy 发表于 2011-9-2 23:38

如此复杂?小红点都可以吗?

HOPE 发表于 2011-9-3 02:21

回复 #2 gokimy 的帖子

说的就是小红点啦。
页: [1]
查看完整版本: ThinkPad X301安装Centos 5.6指点杆滚动