无法校准触摸屏


8

我在WeTab上安装了11.04(尽管wetab os现在是gonne,现在只有11.04)。我使用eGalax Inc. USB TouchController设备驱动程序。我想使用“触摸屏设置”来校准屏幕,但收到以下错误消息:

“无法开始校准。无法独占访问指针”

这很烦人,因为校准略有错误,这意味着我无法到达屏幕的右侧,包括关机/注销等。

是否有此修复程序,或手动更改校准设置的方法?


我现在已经放弃了11.04。它尚不适合我的设备,最好是在没有触摸屏的上网本上
查尔斯(Charles)

Answers:


3

嘿杜德四世也有类似的问题。

为了解决这个问题,我安装了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


嘿,感谢您发布答案。我目前尚未安装11.04,但如果将来再使用它,将尝试使用您的方法。
查尔斯
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.