我跟着Aiptek平板电脑Ubuntu Wiki 上的说明如何配置 11.04 以供我的图形输入板使用。
我安装了该xserver-xorg-input-aiptek
软件包并使用上面 Wiki 页面上详述的选项创建了两个文件:
$ cat /lib/udev/rules.d/69-xserver-xorg-input-aiptek.rules
ACTION!="add|change", GOTO="xorg_aiptek_end"
KERNEL!="event[0-9]*", GOTO="xorg_aiptek_end"
ATTRS{idVendor}=="08ca", ENV{x11_driver}="aiptek", SYMLINK+="input/aiptektablet"
LABEL="xorg_aiptek_end"
$ cat /usr/share/X11/xorg.conf.d/50-aiptek.conf
Section "InputClass"
Identifier "pen"
MatchProduct "Aiptek|AIPTEK|aiptek"
MatchDevicePath "/dev/input/event*"
Driver "aiptek"
Option "USB" "on"
Option "Type" "stylus"
Option "Mode" "absolute"
Option "zMin" "0"
Option "zMax" "511"
EndSection
该文件最初在 Wiki 中50-aiptek.conf
被称为10-aiptek.conf
Aiptek 平板电脑安装帮助Ubuntu 论坛上的一个帖子建议将 10 改为 50。
有任何想法吗?
谢谢。