如何在配有 ALPS 触摸板的 Dell inspiron n5110 上启用多点触控?

如何在配有 ALPS 触摸板的 Dell inspiron n5110 上启用多点触控?

如何在 ubuntu 11.10 中启用戴尔 inspiron n5110 附带的 alps 触摸板的触摸板手势(多点触摸效果)。这些手势在 Windows 上工作正常。

答案1

这篇博文包含安装修补的鼠标驱动程序的说明,该驱动程序可以正确识别您的触摸板: http://nwoki.wordpress.com/2012/10/02/multitouch-fix-for-alps-touchpad/ 即使这有点过时了,因为从那时起驱动程序已经进行过几次更新。

简而言之:下载 psmouse-alps-1.3:http://www.dahetral.com/public-download/psmouse-alps-1.3.tbz/view 然后(使用 sudo / root):

  • 解压文件psmouse-alps-1.3夹至/usr/source
  • cd 到/usr/source
  • dkms add psmouse-alps-1.3
  • dkms autoinstall
  • rmmod psmouse && modprobe psmouse

Bam!多点触控开始工作!:-)

可能重复:在 ALPS 触摸板上启用双指滚动

答案2

如果您想启用 Dell Inspiron 15R 触摸板:

  • 下载该alps-dkms包并将其安装在/usr/src
  • 从终端,导航到/usr/src/psmouse-alps-0.10/src,然后gedit alps.c
  • 向下alps.c滚动并/* Dell Vostro 1400 */完全复制该行。在该行中,您必须替换前 3 个匹配项,即用 0x73 、 0x03 、 0x50 替换 0x73 、 0x02 、 0x50 。
  • 保存文件并返回到终端。在终端中输入dkms add -m psmouse -v alps-0.10
  • 之后,输入dkms build -m psmouse -v alps-0.10
  • 构建完成后,使用以下方式安装dkms install -m psmouse -v alps-0.10
  • 安装成功后,输入rmmod psmouse && modprobe psmouse这将重新加载您的 psmouse 模块。
  • 接下来,输入xinput --list以查看它是否成功加载。如果它显示Alps/PS2 Alps GlidePoint在 xinput 中,那么恭喜你。我敢打赌它会显示,因为我通过这个让它工作了!如果你需要完整的修补模块,你可以问我 :)

相关内容