私は AiptekTablet Ubuntu Wikiの指示に従い、グラフィックタブレットで使用する11.04を構成しました。
xserver-xorg-input-aiptek
パッケージをインストールして、上記のWikiページで詳細が示されたオプションを使用して2つのファイルを作成しました。
$ 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
50-aiptek.conf
ファイルは、もともとWikiのように10-aiptek.conf
と呼ばれていましたが、Ubuntuフォーラムの Aiptekタブレットインストールヘルプ スレッドでは、10から50に変更することを提案しました。
何か案は?
ありがとうございました。