ama*_*ony 14 touchpad synaptics 12.04
我已经在我的新联想 z580 笔记本电脑上安装了 Ubuntu 12.04。触摸板制造商是 Synaptics。但是 Ubuntu 无法加载 Synaptics 驱动程序,尽管该驱动程序已安装。因此,我无法在触摸板上使用滚动功能。命令
同步客户端 -l
返回:
找不到突触属性。没有加载突触驱动程序?
请帮忙。
这很可怕但很容易做到,不要害怕我的孩子
如果该线程的先前想法都不起作用,请尝试此操作:
在终端中输入:
xinput
您应该得到如下所示的内容:
? Virtual core pointer id=2 [master pointer (3)]
? ? Virtual core XTEST pointer id=4 [slave pointer (2)]
? ? ETPS/2 Elantech Touchpad id=14 [slave pointer (2)]
? ? MOSART Semi. 2.4G Wireless Mouse id=10 [slave pointer (2)]
? Virtual core keyboard id=3 [master keyboard (2)]
? Virtual core XTEST keyboard id=5 [slave keyboard (3)]
? Power Button id=6 [slave keyboard (3)]
? Video Bus id=7 [slave keyboard (3)]
? Video Bus id=8 [slave keyboard (3)]
? Sleep Button id=9 [slave keyboard (3)]
? USB Camera id=11 [slave keyboard (3)]
? Asus WMI hotkeys id=12 [slave keyboard (3)]
? AT Translated Set 2 keyboard id=13 [slave keyboard (3)]
Run Code Online (Sandbox Code Playgroud)
虽然很吓人,但其实很容易理解;现在找到你的触摸板,我这里叫做“ETPS/2 Elantech Touchpad”(在第三行)。
现在,一旦你完成这个输入:
xinput --list-props "whatever your touchpad is called"
例如我的将是
nathan@linux-engine:~$ xinput --list-props "ETPS/2 Elantech Touchpad"
一旦你完成这个,Lotta 线应该出现,对我来说是:
Device 'ETPS/2 Elantech Touchpad':
Device Enabled (135): 1
Coordinate Transformation Matrix (137): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
Device Accel Profile (263): 1
Device Accel Constant Deceleration (264): 2.500000
Device Accel Adaptive Deceleration (265): 1.000000
Device Accel Velocity Scaling (266): 12.500000
Synaptics Edges (288): 123, 2974, 114, 2005
Synaptics Finger (289): 1, 1, 0
Synaptics Tap Time (290): 180
Synaptics Tap Move (291): 165
Synaptics Tap Durations (292): 180, 180, 100
Synaptics ClickPad (293): 1
Synaptics Middle Button Timeout (294): 0
Synaptics Two-Finger Pressure (295): 282
Synaptics Two-Finger Width (296): 7
Synaptics Scrolling Distance (297): 75, 75
Synaptics Edge Scrolling (298): 0, 0, 0
Synaptics Two-Finger Scrolling (299): 1, 1
Synaptics Move Speed (300): 1.000000, 1.750000, 0.053305, 0.000000
Synaptics Off (301): 0
Synaptics Locked Drags (302): 0
Synaptics Locked Drags Timeout (303): 5000
Synaptics Tap Action (304): 2, 3, 0, 0, 1, 3, 0
Synaptics Click Action (305): 1, 3, 0
Synaptics Circular Scrolling (306): 0
Synaptics Circular Scrolling Distance (307): 0.100000
Synaptics Circular Scrolling Trigger (308): 0
Synaptics Circular Pad (309): 0
Synaptics Palm Detection (310): 0
Synaptics Palm Dimensions (311): 10, 200
Synaptics Coasting Speed (312): 20.000000, 50.000000
Synaptics Pressure Motion (313): 30, 160
Synaptics Pressure Motion Factor (314): 1.000000, 1.000000
Synaptics Resolution Detect (315): 1
Synaptics Grab Event Device (316): 1
Synaptics Gestures (317): 1
Synaptics Capabilities (318): 1, 0, 0, 1, 1, 1, 1
Synaptics Pad Resolution (319): 32, 31
Synaptics Area (320): 0, 0, 0, 0
Synaptics Soft Button Areas (321): 1548, 0, 1737, 0, 0, 0, 0, 0
Synaptics Noise Cancellation (322): 18, 18
Device Product ID (255): 2, 14
Device Node (256): "/dev/input/event5"
Run Code Online (Sandbox Code Playgroud)
不过没关系!如果您仔细观察,您应该能够找到“两指滚动”一行。例如,我在 Synaptics 两指滚动 (299)。如果该行中的值不是 1、1,那么这里的BINGO就是问题所在!只需输入:xinput --set-prop "touchpad name" "scrolling option" 1 1
我的是nathan@linux-engine:~$ xinput --set-prop "ETPS/2 Elantech Touchpad" "Synaptics Two-Finger Scrolling" 1 1。
它现在应该可以工作了 :)
不过,每次重新启动计算机时都必须这样做!
现在是时候在每次唤醒计算机时自动执行此操作:
在您的主文件夹(或您想要的任何位置)中创建一个您希望命名的文件。它应该包含
#! bash
xinput (the command) ...
Run Code Online (Sandbox Code Playgroud)
然后在搜索一个应用程序名称启动应用程序并按“添加”。根据需要命名并写入命令 Field bash /your/file/path。 例子。完成了,永远:D !!!
转到系统设置(从破折号中搜索)>鼠标和触摸板
启用两根手指滚动和自然滚动(或者按照您希望的配置)
如果我找到类似突触的功能((如在Windows中)触摸板,我将更新这篇文章Ubuntu 驱动程序
希望这有帮助