Fedora23 のタッチパッドの問題

Fedora23 のタッチパッドの問題

インストールしましたフェドラ 23私の〜の上にデル ボストロ3550 ラップトップです。しかし、タッチパッドが正常に動作しません。タッチパッドに指を置いていると、画面上のポインターが常に点滅します。ただし、Windows ではこのようなことは起こりません。Fedora のタッチパッド ドライバーに問題があると思います。

タッチパッドを正常に動作させるためにどのドライバーをインストールすればよいか、どなたかアドバイスをいただけませんか。

答え1

99-syanptics.conf私は自分で問題を解決しました。利用可能な Synaptics ドライバーをインストールしました。その後、をターゲットとするリンクを作成しました。調査した結果、これが私のマシンの実際の構成ファイルであることが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

翻訳

/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から回答を得ました

関連情報