我已經安裝了軟呢帽23在我的戴爾沃斯特羅3550 筆記型電腦。但我的觸控板無法正常工作。當我用手指放在觸控板上時,螢幕上的指針一直在閃爍。但在 Windows 上這種情況永遠不會發生。我認為 Fedora 中的觸控板驅動程式存在一些問題。
誰能建議我應該安裝什麼驅動程式才能讓觸控板正常運作。
答案1
我自己已經解決這個問題了。我剛剛安裝了可用的 synaptics 驅動程式。然後創建了一個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
答案2
侏儒
「滑鼠和觸控板」公用程式可用於在 GNOME 中啟用點擊和設定捲動選項。
KDE Plasma 工作區
進入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 得到答案