Если у вас есть Dell, есть решение для этого. Это также может быть применимо, даже если у вас нет ноутбука Dell, если вы обновляете определенные шаги. У меня Dell Inpsiron 13 серии 7000, и следующее решение отлично сработало для меня.
Эти инструкции исходят непосредственно от Dell в этой статье. Precision / XPS: Ubuntu General Touchpad / Mouse Issue Fix . Похоже, проблема заключается в том, что драйверы Synaptics перекрывают драйверы Dell. Вам нужно отключить Synaptics.
Первая порция сделала чудеса для меня. Вот сценарий, который они предлагают добавить sudo gedit /usr/share/X11/xorg.conf.d/51-synaptics-quirks.conf
. Я не рекомендую следовать принятым решениям ответа, поскольку этот маршрут создает другие проблемы.
# Disable generic Synaptics device, as we're using
# "DLL0704:01 06CB:76AE Touchpad"
# Having multiple touchpad devices running confuses syndaemon
Section "InputClass"
Identifier "SynPS/2 Synaptics TouchPad"
MatchProduct "SynPS/2 Synaptics TouchPad"
MatchIsTouchpad "on"
MatchOS "Linux"
MatchDevicePath "/dev/input/event*"
Option "Ignore" "on"
EndSection
Для сравнения совместимости, у меня есть Dell Inspiron 13 серии 7000 с xinput list
jonathan@Dell:~$ xinput list
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ Logitech USB Receiver id=10 [slave pointer (2)]
⎜ ↳ Logitech USB Receiver id=11 [slave pointer (2)]
⎜ ↳ ELAN Touchscreen id=13 [slave pointer (2)]
⎜ ↳ DELL0741:00 06CB:7E7E Touchpad id=14 [slave pointer (2)]
...
Synaptics отсутствует в этом списке, потому что он был отключен вышеуказанным сценарием. Перед добавлением этого скрипта предлагаю запустить xinput --test <id>"
(для меня 14
). Если вы получаете вывод на терминал, это означает, что ваше устройство работает (ваше устройство включено).
После перезагрузки вам нужно будет установить libinput
следующую команду sudo apt-get install xserver-xorg-input-libinput libinput-tools
.
После libinput
установки вам нужно будет выполнить обновление в sudo gedit /usr/share/X11/xorg.conf.d/90-libinput.conf
соответствии с вашими предпочтениями. Вот мой например
# Match on all types of devices but tablet devices and joysticks
Section "InputClass"
Identifier "libinput pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Option "Tapping" "True"
Option "TapingDrag" "True"
Option "DisableWhileTyping" "True"
Option "AccelProfile" "adaptive"
Option "NaturalScrolling" "True"
Option "AccelSpeed" "0.2"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
И это все, не более чувствительный тачпад!