Linux-Mint

Linux Mint 12 兩指滾動

  • October 26, 2015

我無法在 Linux mint 12 64 位上使用兩根手指滾動來處理任何事情…… hp dv7 筆記型電腦。硬體絕對支持它,因為它在我的 Windows 分區上執行良好。

按照這裡的說明: http ://robert.orzanna.de/2011/06/06/enable-two-finger-scroll-in-linux-mint-11-and-ubuntu-11-04/

我創建了一個

/usr/share/X11/xorg.conf.d/50-twofingerscroll.conf

文件並添加以下資訊:

Section "InputClass"
Identifier "touchpad catchall"
MatchProduct "SynPS/2 Synaptics TouchPad"
MatchDevicePath "/dev/input/event*"
Option "VertTwoFingerScroll" "on"
Option "HorizTwoFingerScroll" "on"
Option "EmulateTwoFingerMinW" "8"
Option "EmulateTwoFingerMinZ" "40"
EndSection

基於此連結:

http://jaisejames.wordpress.com/2011/11/29/to-enable-touchpad-tap-on-click-two-finger-scroll-in-linux-for-laptop-users/

我也嘗試了一個稍微不同的 conf 文件

Section "InputClass"
     Identifier "touchpad catchall"
     Driver "synaptics"
     MatchIsTouchpad "on"
     MatchDevicePath "/dev/input/event*"
     Option "HorizScrollDelta" "0"
     Option "TapButton1" "1"
     Option "TapButton2" "2"
     Option "RBCornerButton" "3"
     Option "VertTwoFingerScroll" "1"
EndSection

我也去過設置>滑鼠>觸摸板並啟用了兩指滾動。由於不再啟用邊緣滾動,這只會殺死所有滾動。

我還安裝了 gpointing 設備設置並嘗試按照此處的說明啟用它:http: //craiglayne.com/linux-mint-enable-two-finger-scrolling-multitouch/

我仍然無法讓兩根手指滾動工作。這讓我發瘋,更不用說我在嘗試從 Windows 切換時還有大約 2-3 個其他薄荷問題。

任何進一步的想法?我錯過了一些明顯的東西嗎?如果您需要我提供更多資訊,請告訴我。

編輯

以下終端命令最終啟用兩指滾動。但是,每次我重新啟動時它們都會失去。

synclient VertTwoFingerScroll=1
synclient HorizTwoFingerScroll=1
synclient EmulateTwoFingerMinW=5
synclient EmulateTwoFingerMinZ=48

我發現這個 xorg 配置絕對適用於我的 Samsung Series 7 以啟用點擊板! https://gist.github.com/2382480

不要修改/usr/share/X11/xorg.conf.d/50-twofingerscroll.conf. 一般來說,永遠不要修改 . 下的文件/usr,除了/usr/local. 這些文件由包管理系統控制。您可以編輯的配置文件位於/etc.

預設情況下,/etc/X11/xorg.confX 伺服器(與硬體對話的 GUI 部分)的配置文件不存在。如果要自定義,首先需要創建一個內容合適的文件。從文本控制台執行此命令(僅當/etc/X11/xorg.conf不存在時!):

sudo sh -c 'Xorg -configure >/etc/X11/xorg.conf'

請參閱如何找到我的 xorg.conf。它在哪裡?Ubuntu wiki了解更多資訊。

創建文件後,您可以添加該InputClass部分。

或者,您可以安排synclient每次登錄時執行。這將使兩指滾動成為每個使用者的設置,而不是系統範圍的設置。請參閱使用者在 Linux 上登錄時啟動程序的標準方法嗎?; 登錄時自動執行 bash 腳本

引用自:https://unix.stackexchange.com/questions/35148