यदि आपके पास डेल है, तो इसके लिए एक समाधान है। यह तब भी लागू हो सकता है जब आपके पास डेल लैपटॉप न हो, जब तक कि आप कुछ चरणों को अपडेट नहीं करते हैं। मेरे पास डेल इप्सिरॉन 13 7000 श्रृंखला है, और निम्नलिखित समाधान ने मेरे लिए पूरी तरह से काम किया।
ये निर्देश सीधे इस लेख में डेल से आए हैं प्रेसिजन / एक्सपीएस: उबंटू जनरल टचपैड / माउस इश्यू फिक्स । यह समस्या प्रतीत होती है कि 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
संगतता तुलना के लिए, मैं एक डेल इंस्पिरॉन 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
)। यदि आपको टर्मिनल पर आउटपुट मिलता है, तो इसका मतलब है कि आपका डिवाइस काम कर रहा है (आपका डिवाइस "ऑन" है)।
रिबूट करने के बाद, आपको फिर 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
और वह यह है, कोई और अधिक संवेदनशील टचपैड!