按住触摸板按钮检测多点触控

按住触摸板按钮检测多点触控

我刚刚从 Windows 切换到 Kubuntu。目前一切都正常,但有一件事确实让我很困扰。

我有带触摸板的华硕 N750。

在 Windows 中,如果我将手指放在鼠标左键上,我可以用另一根手指在触摸板上移动来移动鼠标。在 Linux 上,这会自动检测为多点触控手势,并且不会按预期工作。

也许图片可以更好地解释。

在此处输入图片描述

那么会发生什么呢?如果我将手指 1 放在红点上,并将手指 2 从绿点 1 移到绿点 2,它将不会检测到鼠标移动。

我能做些什么来解决这个问题?

答案1

这适用于我的 Asus Q600a。

删除并重新安装以下两个包可以解决您的问题:

xserver-xorg-input-multitouch
xserver-xorg-input-synaptics

按照以下步骤完全删除并重新安装。

Open terminal and execute following command:

sudo apt-get --purge remove xserver-xorg-input-multitouch

be sure you don't remove any other package than xserver-xorg-input-multitouch

sudo apt-get --purge remove xserver-xorg-input-synaptics

again follow the same precaution.

Once removed execute these commands to install it again:

sudo apt-get install xserver-xorg-input-multitouch
sudo apt-get install xserver-xorg-input-synaptics

again be sure you don't remove any other packages while installing it.

Once installed execute following commands to reconfigure it:

sudo dpkg-reconfigure $(dpkg -l | awk '{print $2}' | grep "^xserver" | tr '\n' ' ')
sudo update-initramfs -u

Then restart your system.

有一个 GUI 应用程序可用于设置触摸板。我的应用程序在 Dash 中显示为“指点设备”。它可让您控制大部分触摸板功能。

前往软件中心并搜索“Pointing Devices”,这也是 Dash 中的名称。

相关内容