최신 Dell 노트북을 사용하는 경우이 지침이 도움이 될 수 있습니다. Dell, Precision / XPS : Ubuntu 일반 터치 패드 / 마우스 문제 수정에서 직접 제공합니다.
첫 번째 부분은 나에게 놀라운 일이었습니다. 추가 할 것을 제안하는 스크립트는 다음과 같습니다 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)]
...
시냅틱은 위의 스크립트에 의해 비활성화 되었기 때문에 해당 목록에 없습니다. 이 스크립트를 추가하기 전에 xinput --test <id>"
(나를 위해 14
) 실행하는 것이 좋습니다 . 터미널에서 출력되는 경우 장치가 작동 중임을 의미합니다 (장치가 "켜져 있음").