Powerbook G4 15 “1.67GHz에서 Debian 8.6 LXDE를 사용하고 있으며 터치 패드를 탭하여 클릭하려면 활성화하십시오. 이미 두 번 스크롤되지만 탭하여 클릭하면 노화 마우스 버튼을 저장하는 데 도움이됩니다. 왼쪽 클릭을위한 두 손가락 탭 케이크에 착빙이 될 수 있습니까?
답변
데비안 제시
터치 패드를 영구적으로 두 드리려면 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
답변
이것은 데비안 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'
터치 패드 조정 할 수있는 모든 가능한 속성을 볼 수 있습니다.
답변
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
시스템을 재부팅하면 탭핑이 작동합니다.
답변
데비안 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
답변
Ubuntu 18.04 LTS에서 다음과 같은 간단한 명령으로 트릭을 수행했습니다.
sudo apt install xserver-xorg-input-synaptics
그런 다음 다시 부팅하십시오 (또는 디스플레이 관리자를 다시 시작하십시오).