在 Ubuntu(/Linux) 上禁用 (/dev/inputX) 输入设备

在 Ubuntu(/Linux) 上禁用 (/dev/inputX) 输入设备

我的故事:我有一台带触摸屏的笔记本电脑,但它有点小问题。它偶尔会将光标跳转到屏幕的某个位置。这很烦人,但我设法找到了正确的输入。

/dev/input/mouse1< 这是我应该在 Linux 中永久禁用的。

我该如何在 Ubuntu 11.04 上执行此操作?(说出版本是因为正确答案可能因 hal/evdev/whatevertheychangestuffdownto 软件而有所不同。)

答案1

在 /etc/X11/xorg.conf 中添加类似这样的内容应该可以工作:

Section "InputClass"
   Identifier         "disable broken device"
   MatchIsTouchscreen "on"
   MatchProduct       "full product name from 'xinput list'"
   Option             "Ignore" "on"
EndSection

更多比赛请参阅http://fedoraproject.org/wiki/Input_device_configuration#InputClasses

相关内容