J'ai suivi les instructions de AiptekTablet sur le Wiki Ubuntu pour configurer la version 11.04 pour utiliser ma tablette graphique.
J'ai installé le package xserver-xorg-input-aiptek
et créé deux fichiers avec les options détaillées sur la page Wiki ci-dessus :
$ 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
Le fichier 50-aiptek.conf
était initialement appelé 10-aiptek.conf
comme dans le Wiki, mais dans un fil de discussion sur l'installation de tablette Aiptek sur les forums Ubuntu, il était suggéré de changer 10 en 50.
Des idées ?
Merci.