이봐 친구 IV 비슷한 문제가 발생했습니다 ....
이 문제를 해결하기 위해 xinput-calibrator를 설치했습니다.
sudo apt-get install xinput-calibrator
그런 다음 시스템> 관리> 터치 스크린 보정에서 실행할 수 있습니다.
교정 후 다음과 유사한 터미널 출력이 표시됩니다.
Warning: multiple calibratable devices found, calibrating last one (eGalax INC. USB TouchController)
use --device to select another one.
Calibrating EVDEV driver for "eGalax INC. USB TouchController" id=12
current calibration values (from XInput): min_x=0, max_x=4095 and min_y=0, max_y=4095
Doing dynamic recalibration:
Setting new calibration data: 77, 3935, 115, 3984
--> Making the calibration permanent <--
copy the snippet below into '/etc/X11/xorg.conf.d/99-calibration.conf'
Section "InputClass"
Identifier "calibration"
MatchProduct "eGalax INC. USB TouchController"
Option "Calibration" "77 3935 115 3984"
EndSection
당신이 필요로하는 유일한 비트는이 대부분을 무시
Option "Calibration" "77 3935 115 3984"
터미널 타입
sudo nano /usr/share/X11/xorg.conf.d/10-evdev.conf
터치 스크린 섹션에 보정 옵션을 추가하십시오
Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "Calibration" "77 3935 115 3984"
EndSection
/etc/X11/xorg.conf.d/99-calibration.conf에 대한 간단한 지침은 http://gnometechblog.weebly.com/1/post/2012/03/first-post.html 에서 찾을 수 있습니다.