我有一台使用 Ubuntu 操作系统的 Acer Aspire 5742Z - 如何禁用触摸板点击
答案1
1/将此代码粘贴到名为(随机)touchpad.sh 的文件中:
#!/bin/sh
#
# My touchpad for some reason is being reported as a wheel mouse instead of a touchpad so
# that is the string I search for to get the deviceid
#
DEVICE_ID=`xinput -list | grep -i "wheel mouse" | grep id= | sed 's/.*id=\([0-9]*\).*/\1/' `
if xinput -list-props $DEVICE_ID | grep "Device Enabled" | grep "1$" > /dev/null
then
xinput set-int-prop $DEVICE_ID "Device Enabled" 8 0
else
xinput set-int-prop $DEVICE_ID "Device Enabled" 8 1
fi
2/ 启用执行
sudo chmod 755 touchpad.sh
3/系统 --> 偏好设置 --> 键盘快捷键创建一个快捷方式来执行此文件,命令类似bash /path/to/sh/file/touchpad.sh
答案2
作为对此的更新:我尝试访问系统 > 鼠标并选择触摸板选项卡。没有找到!
我搜索了互联网并尝试更改 xorg.conf。这不起作用。我使用的是 ubuntu 10.04,也尝试过 10.10
答案3
我们已通过升级到 ubuntu 10.10 解决了此问题。Ian 尚未升级,但他发帖称系统已升级,预计问题仍然存在。
答案4
如果有人来寻找类似问题的解决方案:
您可以尝试安装这个gpointing-device-settings
从存储库调用的包。然后打开系统->首选项->指点设备并根据需要配置触摸板/鼠标。