나는 설치했다페도라 23내델 보스트로3550 노트북. 그런데 터치패드가 제대로 작동하지 않아요. 터치패드에 손가락을 대고 있으면 화면의 포인터가 항상 깜박입니다. 하지만 Windows에서는 그런 일이 발생하지 않습니다. 페도라의 터치패드 드라이버에 문제가 있는 것 같습니다.
터치패드가 제대로 작동하려면 어떤 드라이버를 설치해야 하는지 제안할 수 있는 사람이 있나요?
답변1
나는 문제를 직접 해결했습니다. 방금 사용 가능한 시냅틱스 드라이버를 설치했습니다. 그런 다음 몇 가지 연구 후에 그것이 내 컴퓨터의 실제 구성 파일이어야 한다는 것을 알게 되었기 때문에 를 99-syanptics.conf
대상으로 하는 링크를 만들었습니다 .50-synaptics.conf
99-syanptics.conf
dnf install xorg-x11-drv-synaptics*
cd /usr/share/X11/xorg.conf.d/
ln -s 50-synaptics.conf 99-synaptics.conf
주의 - 이후에는 재부팅이 필요합니다.
힌트를 제공하는 데 도움을 주신 GAD3R에게 감사드립니다. :디
답변2
금언
"마우스 및 터치패드" 유틸리티를 사용하면 그놈에서 탭핑을 활성화하고 스크롤 옵션을 설정할 수 있습니다.
KDE 플라즈마 작업공간
KDE 시스템 설정 입력
하드웨어 / 입력 장치 / 터치패드를 선택하세요. (없으면 kcm_touchpad를 먼저 설치한 후 시스템 설정을 다시 시작하세요. 기본적으로 설치되어 있습니다.)
탭핑 탭을 선택하세요
"탭 활성화" 확인란을 선택하세요.
아래의 "버튼"에서 몇 가지 탭 동작을 설정합니다. 기본값은 아무것도 하지 않는 것입니다. 또는 다른 창 관리자에 설명된 시스템 전체 방법을 사용할 수도 있습니다.
LXDE
/usr/share/X11/xorg.conf.d/50-synaptics.conf 파일을 다음 위치에 복사합니다.
/etc/X11/xorg.conf.d/
cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf
그런 다음 즐겨 사용하는 텍스트 편집기에서 이 파일을 다음과 같이 수정합니다.
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
####################################
## The lines that you need to add ##
# Enable left mouse button by tapping
Option "TapButton1" "1"
# Enable vertical scrolling
Option "VertEdgeScroll" "1"
# Enable right mouse button by tapping lower right corner
Option "RBCornerButton" "3"
####################################
MatchDevicePath "/dev/input/event*"
EndSection
XFCE
/usr/share/X11/xorg.conf.d/50-synaptics.conf 파일을 다음 위치에 복사합니다.
/etc/X11/xorg.conf.d/
cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf
그런 다음 즐겨 사용하는 텍스트 편집기에서 다음과 같이 새 파일을 수정합니다.
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
####################################
## The lines that you need to add ##
# Enable left mouse button by tapping
Option "TapButton1" "1"
# Enable vertical scrolling
Option "VertEdgeScroll" "1"
# Enable right mouse button by tapping lower right corner
Option "RBCornerButton" "3"
####################################
MatchDevicePath "/dev/input/event*"
EndSection
친구
/usr/share/X11/xorg.conf.d/50-synaptics.conf 파일을 /etc/X11/xorg.conf.d/에 복사합니다.
cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf
그런 다음 즐겨 사용하는 텍스트 편집기에서 이 파일을 다음과 같이 수정합니다.
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
####################################
## The lines that you need to add ##
# Enable left mouse button by tapping
Option "TapButton1" "1"
# Enable vertical scrolling
Option "VertEdgeScroll" "1"
# Enable right mouse button by tapping lower right corner
Option "RBCornerButton" "3"
####################################
MatchDevicePath "/dev/input/event*"
EndSection
fedoraproject.org에서 답변을 얻었습니다.