Vostro 3400触摸板多个手势和两个手指滚动无法正常工作

我最近买了一台带有4 gb ram的dell vostro 3400 i3。 一切都像丝绸一样顺畅,我使用特立独行,但我不能得到两个手指滚动和多个手势,如它所支持的缩放等。 有人可以帮忙吗? 我已经安装了gsynaptics并启用了滚动但它不起作用。

我的东芝U400有同样的问题。 即使安装gpointing-device-settings也不起作用,尽管至少启用它的选项并没有变灰。

最后,我找到了这个论坛post ,它突出了这个小shell脚本:

#!/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 '"AlpsPS/2 ALPS GlidePoint"' # sleep 5 #added delay... xinput --set-prop --type=int --format=32 "AlpsPS/2 ALPS GlidePoint" "Synaptics Two-Finger Pressure" 125 xinput --set-prop --type=int --format=32 "AlpsPS/2 ALPS GlidePoint" "Synaptics Two-Finger Width" 0 # Below width 1 finger touch, above width simulate 2 finger touch. - value=pad-pixels xinput --set-prop --type=int --format=8 "AlpsPS/2 ALPS GlidePoint" "Synaptics Two-Finger Scrolling" 1 0 # vertical scrolling, horizontal scrolling - values: 0=disable 1=enable exit 

但是,它适用于某些型号,而不适用于其他型号。 祝好运。