私はインストールしましたFedora 23私のデルボストロ3550ノートパソコン。ところで、タッチパッドが正しく動作しません。タッチパッドに指を置くと、画面上のポインタが点滅し続けます。しかし、Windowsではこれは決して起こりません。 Fedoraのタッチパッドドライバに問題があるようです。
タッチパッドが正しく機能するためにどのドライバをインストールする必要があるかを提案できる人はいますか?
答え1
私はこの問題を直接解決しました。利用可能なシナプティクスドライバをインストールしました。その後、へ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プラズマワークスペース
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から答えを得ました。