Linux Mint 12 两指滚动

Linux Mint 12 两指滚动

我无法用两个手指滚动来在 Linux mint 12 64 位 hp dv7 笔记本电脑上进行任何操作。硬件肯定支持它,因为它在我的 Windows 分区上运行得很好。

按照此处的说明进行操作: http://robert.orzanna.de/2011/06/06/enable-two-finger-scroll-in-linux-mint-11-and-ubuntu-11-04/

我创建了一个

/usr/share/X11/xorg.conf.d/50-twofingerscroll.conf

文件并添加以下信息:

Section "InputClass"
Identifier "touchpad catchall"
MatchProduct "SynPS/2 Synaptics TouchPad"
MatchDevicePath "/dev/input/event*"
Option "VertTwoFingerScroll" "on"
Option "HorizTwoFingerScroll" "on"
Option "EmulateTwoFingerMinW" "8"
Option "EmulateTwoFingerMinZ" "40"
EndSection

基于此链接:

http://jaisejames.wordpress.com/2011/11/29/to-enable-touchpad-tap-on-click-two-finger-scroll-in-linux-for-laptop-users/

我还尝试了一个稍微不同的conf文件

Section "InputClass"
      Identifier "touchpad catchall"
      Driver "synaptics"
      MatchIsTouchpad "on"
      MatchDevicePath "/dev/input/event*"
      Option "HorizScrollDelta" "0"
      Option "TapButton1" "1"
      Option "TapButton2" "2"
      Option "RBCornerButton" "3"
      Option "VertTwoFingerScroll" "1"
EndSection

我还去过“设置”>“鼠标”>“触摸板”并启用了两指滚动。这只会杀死所有滚动,因为边缘滚动不再启用。

我还安装了 gpointing 设备设置并尝试按照此处的说明启用它: http://craiglayne.com/linux-mint-enable-two-finger-scrolling-multitouch/

我仍然无法用两根手指滚动来工作。这让我发疯,更不用说我在尝试离开 Windows 时仍然遇到 2-3 个其他的 Mint 问题。

还有什么进一步的想法吗?我错过了一些明显的东西吗?如果您需要我提供更多信息,请告诉我。

编辑:

以下终端命令最终启用两指滚动。但是,每次我重新启动时它们都会丢失。

synclient VertTwoFingerScroll=1
synclient HorizTwoFingerScroll=1
synclient EmulateTwoFingerMinW=5
synclient EmulateTwoFingerMinZ=48

我发现这个 xorg 配置绝对适用于我的 Samsung Series 7 以启用触控板! https://gist.github.com/2382480

答案1

不要修改/usr/share/X11/xorg.conf.d/50-twofingerscroll.conf.一般来说,切勿修改 下的文件/usr,除非/usr/local.这些文件受包管理系统的控制。您可以编辑的配置文件位于/etc.

默认情况下,/etc/X11/xorg.confX 服务器(GUI 中与硬件对话的部分)的配置文件 不存在。如果要自定义它,首先需要创建一个包含合适内容的文件。从文本控制台运行此命令(仅当/etc/X11/xorg.conf尚不存在时!):

sudo sh -c 'Xorg -configure >/etc/X11/xorg.conf'

如何找到我的 xorg.conf。它在哪里?Ubuntu 维基了解更多信息。

创建文件后,您可以添加该InputClass部分。

或者,您可以安排synclient在登录时运行。这将使两指滚动成为每个用户的设置,而不是系统范围的设置。看当用户登录 Linux 时是否有标准方法启动程序?;登录时自动运行 bash 脚本

答案2

/usr/share/X11/xorg.conf.d/foo.conf例如,afaik。将编辑的文件复制到/etc/X11/xorg.conf.d/foo.conf并重新启动。

(顺便说一句,通过 Google 来到这里,因为我的 Synaptics 触摸板在上次 dist 升级后突然没有两指滚动。不知道原因,.conf以前不需要。)

答案3

正如上面提到的: http://www.maketecheasier.com/enable-two-finger-scrolling-in-linux-mint/:

  • 转到鼠标和触摸板设置
  • 选择触摸板选项卡
  • 在滚动部分下,选择面板布局
  • 选择“双面板滚动”

相关内容