Linux Mintで2本指スクロール

Linux Mintで2本指スクロール

私は最近私のラップトップにMint 17 Cinnamonをインストールしましたが、2本の指スクロール機能は機能しません。システム設定でパネルレイアウトを2本指スクロールに変更しましたが、役に立ちませんでした。

また、ここへの答えに従いました。Linux Mint 12 2本指スクロール そして、次の行を追加しましたここしかし、それも役に立ちません。

/usr/share/X11/xorg.conf.d//etc/X11/コピーしましたが、/usr/X11/xorg.conf.d/50-synaptics.conf次のようになりました。

Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        Option "VertEdgeScroll" "on"
        Option "VertTwoFingerScroll" "on"
        Option "HorizEdgeScroll" "on"
        Option "HorizTwoFingerScroll" "on"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
      MatchDevicePath "/dev/input/event*"
EndSection

Section "InputClass"
        Identifier "touchpad ignore duplicates"
        MatchIsTouchpad "on"
        MatchOS "Linux"
        MatchDevicePath "/dev/input/mouse*"
        Option "Ignore" "on"
EndSection

# This option enables the bottom right corner to be a right button on
# non-synaptics clickpads.
# This option is only interpreted by clickpads.
Section "InputClass"
        Identifier "Default clickpad buttons"
        MatchDriver "synaptics"
        Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
#       To disable the bottom edge area so the buttons only work as buttons,
#       not for movement, set the AreaBottomEdge
#       Option "AreaBottomEdge" "82%"
EndSection

# This option disables software buttons on Apple touchpads.
# This option is only interpreted by clickpads.
Section "InputClass"
        Identifier "Disable clickpad buttons on Apple touchpads"
        MatchProduct "Apple|bcm5974"
        MatchDriver "synaptics"
        Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
EndSection

再起動しましたが、2本の指スクロールはまだ機能しません。

ベストアンサー1

使用コマンド:

synclient VertTwoFingerScroll=1

おすすめ記事