1107在华硕U5F笔记本上,关于触控板的一个小心得
1107在华硕U5F上硬盘安装成功。启动后,右下角任务栏里有Synaptics Touchpad的图标,但除了“Configure Synaptics Touchpad”之外,其它几个选项都是灰色的无法点选。点“Configure Synaptics Touchpad”时,提示如下图:
google了一下相关的资料,总结一下解决办法:
1、编辑 /etc/X11/xorg.conf,
2、找到Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
在里面加一句 InputDevice "Synaptics Touchpad"
即改成:Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Synaptics Touchpad"
EndSection
3、再找到 Section "InputDevice" ... EndSection ,在其后添加一段Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizScrollDelta" "0"
Option "SHMConfig" "on"
EndSection
完成后,保存、重启。之后,就可以通过Synaptics Touchpad来控制触控板是否启用了。 嗯。其实一直是可以这样做的,但是MI这里还没有改,没找到比较好的通用办法。
页:
[1]