
나는 팔로우했다Aiptek태블릿내 그래픽 태블릿과 함께 사용할 수 있도록 11.04를 구성하려면 Ubuntu Wiki의 지침을 참조하세요.
패키지를 설치 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으로 변경할 것을 제안했습니다.
어떤 아이디어가 있나요?
감사합니다.