답변:
데비안 제시
터치 패드를 영구적으로 두 드리려면 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
DM을 다시 시작하십시오. e, g :
# systemctl restart lightdm
또는
# systemctl restart gdm3
데비안 위키 : 터치 패드 탭핑 활성화
많은 시스템이 Wayland로 이동함에 따라 최근 시스템 (2017)에서 시냅스 드라이버는 더 이상 사용되지 않습니다. 대신 libinput이 사용됩니다.
libinput을 사용하여 터치 패드를 탭하여 클릭 할 수있게하려면 Xorg 구성에서 파일을 작성하십시오.
$ touch /etc/X11/xorg.conf.d/99-synaptics-overrides.conf
그리고 다음 구성을 추가하십시오.
Section "InputClass"
Identifier "touchpad overrides"
Driver "libinput"
MatchIsTouchpad "on"
Option "Tapping" "on"
Option "TappingButtonMap" "lmr"
EndSection
tap to click
작업을 수행 할 수있는 유일한 방법이므로 +1 입니다 Debian Stretch
.
tap to click
.
이것은 데비안 8.6 및 LXDE의 비슷한 상황에서 나를 위해 속임수를 사용합니다.
synclient TapButton1=1
시냅틱 터치 패드가 시냅틱 드라이버와 함께 작동하는 경우 위와 같이 작동합니다 xserver-xorg-input-synaptics
.
libinput
드라이버 로 작업중인 경우 (많은 라이브 이미지의 기본 드라이버) :
xinput set-prop 'SynPS/2 Synaptics TouchPad' 'libinput Tapping Enabled' 1
당신이 사용할 수있는 xinput list-props 'SynPS/2 Synaptics TouchPad'
터치 패드 조정 할 수있는 모든 가능한 속성을 볼 수 있습니다.
/etc/rc.local
또는에 넣으십시오 /etc/init.d/rc.local
. 추신 :이 답변에 만족한다면이 답변을 해결책으로 받아들이는 것을 잊지 마십시오.
$: synclient TapButton2=3 TapButton3=2
. 또한 실행 synclient
하면 터치 패드에 사용할 수있는 모든 옵션이 표시됩니다.
xfce 데스크탑 환경에서 debian Stretch 9.5 사용.
업데이트 : /usr/share/X11/xorg.conf.d/40-libinput.conf
이 섹션을 추가하십시오.
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "Tapping" "on"
EndSection
시스템을 재부팅하면 탭핑이 작동합니다.
sudo cp /usr/share/X11/xorg.conf.d/40-libinput.conf{,.bak}
이전 에 파일의 백업을 만들었습니다 ). 그리고 i3, sddm 등의 문제를 해결했습니다. Debian 9.6에 있습니다.
데비안 9.1 (스트레치)에서 나는 같은 문제 (아수스 랩톱에서)에서 달렸다. LXDE를 George로 사용했습니다.
synclient를 찾을 수 없으면 먼저 설치하십시오.
sudo apt install xserver-xorg-input-synaptics
그런 다음 끝에 다음 줄을 추가하십시오 ~/.config/lxsession/LXDE/autostart
.
@synclient TapButton1=1 TapButton2=3 TapButton3=2
다시 부팅하면 "탭 클릭"및 "두 손가락 탭 – 오른쪽 클릭"이 가능합니다
이것은 내 시냅틱 xorg 설정이며 xserver-xorg-input-synaptics
패키지가있는 Debian 9.7 (스트레치)에서 완벽하게 작동 합니다.
$ cat /etc/X11/xorg.conf.d/70-synaptic.conf
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
## for natural scrolling
Option "VertScrollDelta" "-111"
Option "HorizScrollDelta" "-111"
## tap to click
Option "TapButton1" "1"
## two finger tap to Right click
Option "TapButton2" "3"
EndSection