如何在Ubuntu10.10中为我的宏碁Aspire 4740笔记本启用多点触摸?
Screen 14.1-inch glossy LED-backlit
1366x768 res
CPU Intel Core i5-430m 2.26GHz
RAM 1GB DDR3
HDD 320GB
Graphics Onboard Intel GMA HD
USB Ports 3
DVD Writer Yes
Gigabit Ethernet Yes
Wi-Fi 802.11 b/g/n
HDMI/eSATA/FireWire Yes/No/No
Multicard Reader Yes
ExpressCard Slot No发布于 2011-01-16 12:21:26
此页描述了启用多点触控的必要步骤.
我用它作为向导,能够激活我的系统上的多点触控。
发布于 2010-10-13 11:54:46
如果你的笔记本电脑是用Synaptics触摸屏构建的,你需要为你的环境安装synaptics驱动程序。要进行配置,您还需要gsynaptics配置工具。有了tose,您就可以享受模纹触摸的功能了。
发布于 2010-11-08 04:36:58
多点触控和synaptics驱动程序已安装完毕,可供使用。您是否检查了系统>首选项>鼠标和touchpad选项卡下的触摸屏设置?
如果你不能像我一样激活多点触控:

您可以强制设置
gconftool-2 --set --type=int /desktop/gnome/peripherals/touchpad/scroll_method 2如果多点触摸在此之后无法工作,请尝试重新启动。如果仍然无法工作,请尝试以下脚本:
#!/bin/bash
# list of synaptics device properties http://www.x.org/archive/X11R7.5/doc/man/man4/synaptics.4.html#sect4
# list current synaptics device properties: xinput list-props "SynPS/2 Synaptics TouchPad"
#
sleep 2
xinput --set-prop --type=int --format=32 "SynPS/2 Synaptics TouchPad" "Synaptics Two-Finger Pressure" 10
# Below width 1 finger touch, above width simulate 2 finger touch. - value=pad-pixels
xinput --set-prop --type=int --format=32 "SynPS/2 Synaptics TouchPad" "Synaptics Two-Finger Width" 7
# vertical scrolling, horizontal scrolling - values: 0=disable 1=enable
xinput --set-prop --type=int --format=8 "SynPS/2 Synaptics TouchPad" "Synaptics Two-Finger Scrolling" 1 1
# vertical, horizontal, corner - values: 0=disable 1=enable
xinput --set-prop --type=int --format=8 "SynPS/2 Synaptics TouchPad" "Synaptics Edge Scrolling" 0 0 0
# stabilize 2 finger actions - value=pad-pixels
xinput --set-prop --type=int --format=32 "SynPS/2 Synaptics TouchPad" "Synaptics Jumpy Cursor Threshold" 120
#xinput --set-prop --type=int --format=8 "SynPS/2 Synaptics TouchPad" "Synaptics Tap Action" 0 0 0 0 1 2 0如果这使其工作,把它放在一个文件,使其可执行,并添加到您的启动应用程序。
https://askubuntu.com/questions/6097
复制相似问题