Fedora23上的觸摸板問題
我在Dell Vostro 3550 筆記型電腦上安裝了*Fedora 23 。*但是我的觸摸板不能正常工作。當我將手指放在觸摸板上時,螢幕上的指針一直在閃爍。不過,這在 Windows 上永遠不會發生。我認為fedora中的觸摸板驅動程序存在一些問題。
誰能建議我應該安裝什麼驅動程序才能使觸摸板正常工作。
我自己解決了這個問題。我剛剛安裝了可用的突觸驅動程序。
99-syanptics.conf
然後創建了一個指向的連結50-synaptics.conf
,因為經過一些研究,我知道這99-syanptics.conf
應該是我機器的實際配置文件。dnf install xorg-x11-drv-synaptics* cd /usr/share/X11/xorg.conf.d/ ln -s 50-synaptics.conf 99-synaptics.conf
注意 - 在此之後需要重新啟動。
感謝 GAD3R 幫助我提供提示。:D
侏儒
“滑鼠和触摸板”實用程序可用於在 GNOME 中啟用點擊和設置滾動選項。
KDE 等離子工作區
進入 KDE 系統設置
選擇硬體/輸入設備/觸摸板(如果沒有,請先安裝kcm_touchpad,然後重新啟動系統設置。預設安裝。)
選擇攻絲選項卡
選中“啟用點擊”複選框
在下面的“按鈕”下設置一些點擊動作,預設是什麼都不做或者,也可以使用其他視窗管理器下描述的系統範圍的方法。
LXDE
將 /usr/share/X11/xorg.conf.d/50-synaptics.conf 文件複製到
/etc/X11/xorg.conf.d/
cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf
然後,在您最喜歡的文本編輯器中,修改此文件,如下所示:
Section "InputClass" Identifier "touchpad catchall" Driver "synaptics" MatchIsTouchpad "on" #################################### ## The lines that you need to add ## # Enable left mouse button by tapping Option "TapButton1" "1" # Enable vertical scrolling Option "VertEdgeScroll" "1" # Enable right mouse button by tapping lower right corner Option "RBCornerButton" "3" #################################### MatchDevicePath "/dev/input/event*" EndSection
XFCE
將 /usr/share/X11/xorg.conf.d/50-synaptics.conf 文件複製到
/etc/X11/xorg.conf.d/
cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf
然後,在您喜歡的文本編輯器中,修改新文件,如下所示:
Section "InputClass" Identifier "touchpad catchall" Driver "synaptics" MatchIsTouchpad "on" #################################### ## The lines that you need to add ## # Enable left mouse button by tapping Option "TapButton1" "1" # Enable vertical scrolling Option "VertEdgeScroll" "1" # Enable right mouse button by tapping lower right corner Option "RBCornerButton" "3" #################################### MatchDevicePath "/dev/input/event*" EndSection
伴侶
將 /usr/share/X11/xorg.conf.d/50-synaptics.conf 文件複製到 /etc/X11/xorg.conf.d/
cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf
然後,在您最喜歡的文本編輯器中,修改此文件,如下所示:
Section "InputClass" Identifier "touchpad catchall" Driver "synaptics" MatchIsTouchpad "on" #################################### ## The lines that you need to add ## # Enable left mouse button by tapping Option "TapButton1" "1" # Enable vertical scrolling Option "VertEdgeScroll" "1" # Enable right mouse button by tapping lower right corner Option "RBCornerButton" "3" #################################### MatchDevicePath "/dev/input/event*" EndSection
我從 fedoraproject.org 得到答案