Answers:
我不小心禁用了触摸板。这是我发现重新启用它的方法。
按下“ Windows键”以打开开始菜单。输入“ terminal”并输入以打开命令行。
然后输入:
xinput list
找到您的触摸板的“ id”。对我来说,它看起来像这样:
Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ TPPS/2 IBM TrackPoint id=12 [slave pointer (2)]
⎜ ↳ SynPS/2 Synaptics TouchPad id=11 [slave pointer (2)]
我的触摸板的ID = 11。
然后输入
xinput set-prop 11 "Device Enabled" 1
(但将11替换为您的触摸板具有的ID)
xset set-prop ... 0
然后xset set-prop ... 1
xinput --list |grep -oP "Touchpad.*id=\K.*?(?=\s)"
“ Device Enabled” 0'alias touchpad-on ='xinput set-prop xinput --list |grep -oP "Touchpad.*id=\K.*?(?=\s)"
“ Device Enabled”
这对我在kali linux上工作:
gsettings reset org.gnome.desktop.peripherals.touchpad send-events
可以通过以下方式找到模式目录:
gsettings list-schemas
编辑:这也适用于Ubuntu 18.04。
如果您通过“ Mouse&Touchpad GUI”将其禁用,则在运行Ubuntu 16.04时,有一种非常简单的方法可以重新启用触摸板:
我意识到这很简单,但是花了我很长时间才能弄清楚。
您可以在终端中尝试以下命令,看看是否有帮助,当它停止工作时,我总是使用它在11.10上重新启动触摸板,但是在12.04上我没有任何问题。
synclient Touchpadoff=0
我正在使用Linux Mint并禁用了触摸板,就像我之前的其他人一样,我注意到如果您没有鼠标可以将其重新打开会非常困难。
使用Mint Preferences禁用触摸板将无法让您通过在各个地方使用xinput或synclient再次启用它。
tl; dr
gsettings set org.cinnamon.settings-daemon.peripherals.touchpad touchpad-enabled true
关于如何设法将其恢复的较长版本。
我将肉桂配置转储到一个文件中:
'dconf dump /org/cinnamon/ > mysettings'
在标题“ settings-daemon / peripherals / touchpad”下,我发现“ touchpad-enabled = false”
列出架构并找到与触摸板相关的内容
gsettings list-schemas | grep touchpad
列出触摸板模式中的按键
gsettings list-keys org.cinnamon.settings-daemon.peripherals.touchpad
启用触摸板
gsettings set org.cinnamon.settings-daemon.peripherals.touchpad touchpad-enabled true
一些有用的链接: