डेबियन जेसी
टचपैड को स्थायी रूप से टैप करने में सक्षम करने के लिए, 50-synaptics.conf
फ़ाइल को कॉपी /etc/X11/xorg.conf.d
करें और फिर उसे जोड़कर संपादित करेंOption "TapButton1" "1"
cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf
/etc/X11/xorg.conf.d/50-synaptics.conf
होना चाहिए:
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "3"
अपने सिस्टम को रिबूट करें
डेबियन स्ट्रेच और बस्टर (अद्यतन)
xserver-xorg-input-synaptics
पैकेज निकालें । (जरूरी)
# apt remove xserver-xorg-input-synaptics
स्थापित करें xserver-xorg-input-libinput
:
# apt install xserver-xorg-input-libinput
ज्यादातर मामलों में, सुनिश्चित करें कि आपके पास xserver-xorg-input-libinput
पैकेज स्थापित है, और xserver-xorg-input-synaptics
पैकेज नहीं ।
40-libinput.conf
फ़ाइल बनाएँ :
# echo 'Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "Tapping" "on"
EndSection' > /etc/X11/xorg.conf.d/40-libinput.conf
अपने डीएम को पुनरारंभ करें; उदा:
# systemctl restart lightdm
या
# systemctl restart gdm3
डेबियन विकी: टचपैड पर टैपिंग सक्षम करें