
나는 설치했다페도라 23내델보스트로3550 노트북. 그런데 터치패드가 제대로 작동하지 않아요. 터치패드에 손가락을 대면 화면의 포인터가 계속 깜박입니다. 하지만 Windows에서는 이런 일이 절대 발생하지 않습니다. Fedora의 터치패드 드라이버에 문제가 있는 것 같습니다.
터치패드가 제대로 작동하려면 어떤 드라이버를 설치해야 하는지 제안할 수 있는 사람이 있나요?
답변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에서 답변을 얻었습니다.