使用GSynaptics来调整笔记本电脑触控板的灵敏度:
环境:CentOS 5.2,Gnome桌面
1、下载:
http://sourceforge.jp/projects/gsynaptics/downloads/29684/gsynaptics-0.9.14.tar.gz2、解压:tar zxvf gsynaptics-0.9.14.tar.gz
3、编译、安装:
cd gsynaptics-0.9.14
./configure && make
make install #本步用root权限安装,在CentOS中su->输入root口令,再安装。Debian及派生系统用sudo make install安装。
4、在Xorg.conf增加参数:(本步需要root权限,否则不能保存)
gedit /etc/X11/xorg.conf
找到下面这节:
引用:
Section "InputDevice"
Identifier "Synaptics"
Driver "synaptics"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto-dev"
Option "Emulate3Buttons" "yes"
EndSection
增加一行
Option "SHMConfig" "true"
变为:
引用:
Section "InputDevice"
Identifier "Synaptics"
Driver "synaptics"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto-dev"
Option "Emulate3Buttons" "yes"
Option "SHMConfig" "true"
EndSection
保存后,退出。
5、注消用户,重新登录后,打开终端窗口,运行gsynaptics命令,即可出现图形触控板调整窗口。
在“一般”标签中,将“敏感程度”调低一点,这样,打字时,大姆指不小心轻触到触控板,也不会改变光标的位置了。