xinput list SYN1B81:01 06CB:74DA Touchpad id=11 이라고 나오네. xinput --watch-props 11 이라고 입력했더니 좌라락 보이는데, Synaptics Palm Detection (296): 1 Synaptics Palm Dimensions (297): 10, 200 이 눈에 띄네. 구글 검색어 : ubuntu Synaptics Palm Detection Synaptics Palm Dimensions https://askubuntu.com/questions/964242/synaptics-palm-dimensions-numbers 를 봤더니 Synaptics Palm Dimensions (297): 의 두 값은 PalmMinWidth - 터치가 손바닥으로 간주되는 최소 손가락 너비 PalmMinZ - 터치가 손바닥으로 간주되는 최소 손가락 압력 정보 출처 : ftp://www.x.org/pub/X11R7.5/doc/man/man4/synaptics.4.html . 이라고... https://askubuntu.com/questions/1085390/how-do-i-disable-the-touchpad-while-typing-ubuntu-18-04 xinput --set-prop 7 "400" 1 xinput --set-prop 7 "401" 1, 100 이런 식으로 치면 뭐가 바뀔 것 같긴 한데... 무서움. 새 터미널에서 xinput --test 11 라고 입력했더니 좌표가 막 뜨는데 의미 없을 듯하고... xinput --watch-props 11 전체 값 복붙 Device 'SYN1B81:01 06CB:74DA Touchpad': Device Enabled (141): 1 Coordinate Transformation Matrix (143): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000 Device Accel Profile (270): 1 Device Accel Constant Deceleration (271): 2.500000 Device Accel Adaptive Deceleration (272): 1.000000 Device Accel Velocity Scaling (273): 12.679856 Synaptics Edges (274): 48, 1175, 36, 648 Synaptics Finger (275): 25, 30, 0 Synaptics Tap Time (276): 180 Synaptics Tap Move (277): 61 Synaptics Tap Durations (278): 180, 180, 100 Synaptics ClickPad (279): 1 Synaptics Middle Button Timeout (280): 0 Synaptics Two-Finger Pressure (281): 282 Synaptics Two-Finger Width (282): 7 Synaptics Scrolling Distance (283): 28, 28 Synaptics Edge Scrolling (284): 0, 0, 0 Synaptics Two-Finger Scrolling (285): 1, 1 Synaptics Move Speed (286): 1.000000, 1.750000, 0.142755, 0.000000 Synaptics Off (287): 0 Synaptics Locked Drags (288): 0 Synaptics Locked Drags Timeout (289): 5000 Synaptics Tap Action (290): 0, 0, 0, 0, 1, 3, 2 Synaptics Click Action (291): 1, 3, 2 Synaptics Circular Scrolling (292): 0 Synaptics Circular Scrolling Distance (293): 0.100000 Synaptics Circular Scrolling Trigger (294): 0 Synaptics Circular Pad (295): 0 Synaptics Palm Detection (296): 1 Synaptics Palm Dimensions (297): 10, 200 Synaptics Coasting Speed (298): 20.000000, 50.000000 Synaptics Pressure Motion (299): 30, 160 Synaptics Pressure Motion Factor (300): 1.000000, 1.000000 Synaptics Resolution Detect (301): 1 Synaptics Grab Event Device (302): 0 Synaptics Gestures (303): 1 Synaptics Capabilities (304): 1, 0, 0, 1, 1, 0, 0 Synaptics Pad Resolution (305): 12, 12 Synaptics Area (306): 0, 0, 0, 0 Synaptics Soft Button Areas (307): 0, 0, 0, 0, 0, 0, 0, 0 Synaptics Noise Cancellation (308): 7, 7 Device Product ID (267): 1739, 29914 Device Node (266): "/dev/input/event5" https://www.x.org/releases/X11R7.5/doc/man/man1/xinput.1.html xinput 설정 매뉴얼ㅋ https://wiki.archlinux.org/index.php/Touchpad_Synaptics#Disable_touchpad_while_typing 도움이 될 것 같은데... ̄ 구글 검색어 : 우분투 synclient http://kwonnam.pe.kr/wiki/linux/ubuntu/touchpad 도움이 될 것 같은데... file:///run/media/jimnong/3d2214c8-38f2-4045-981f-58346e414993/usr/share/X11/xorg.conf.d/70-synaptics.conf 시냅틱스 설정 파일이 있는 것 같은데... syndaemon --help 이 열쇠 같은 듯. file:///run/media/jimnong/3d2214c8-38f2-4045-981f-58346e414993/usr/bin/syndaemon https://askubuntu.com/questions/192566/how-do-i-verify-that-syndaemon-is-disabling-the-touchpad-while-i-type/439082#439082 확인하는 법. 참고. 터미널 창에서 아래처럼 입력하면 확인되는 듯. while true; do synclient|grep TouchpadOff; sleep 0.5; done syndaemon -t -i 2.0 -m 100 -R -d syndaemon -i 0.8 -d -R syndaemon -t -i 0.8 -R 라고 터미널에 치니까 커서가 안 돌아오네. syndaemon -t -i 0.8 -R -d 라고 쳤더니 돌아오네. 두번째 명령어로 일단 되긴 하는 듯. ps -xf | grep syndaemon 쳐보니까 대몬들 중에서 syndaemon이 확인이 되네. ("시스템 정보" 앱에서도 확인이 되네.) kill -9 PID번호 치니까 대몬이 종료되긴 하는데, 터치패드 탭이 안 먹히게 바뀌네. "시스템 정보" 앱에서 중단하니까 터치패드 안 먹히는 문제가 없음. killall -q syndaemon 라고 쳐봤는데, 역시 문제 없이 데몬이 종료됨. https://askubuntu.com/questions/299868/disable-touchpad-while-typing-does-not-work Alias로 지정하는 방법도 있네...