aiptek 繪圖板無法在 17.10 上運行

aiptek 繪圖板無法在 17.10 上運行

我有一台舊的 Trust/Aiptek 平板電腦,已在dmesg

[    7.047168] aiptek 1-1:1.0: Aiptek using 400 ms programming speed
[    7.047230] input: Aiptek as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.0/input/input7
[    7.047335] usbcore: registered new interface driver aiptek

我安裝xserver-xorg-input-aiptek並建立了配置文件Xorg

/usr/share/X11/xorg.conf.d/50-aiptek.conf

Section "InputClass"
        Identifier "Aiptek class"
        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

現在它可以在登入畫面 ( GDM) 上運行,但一旦我登入GNOME(普通會話,ubuntu 17.10),它就停止工作。

任何想法?看起來像是權限問題,但沒有太多可在網路上找到的內容,因為它是一個相當舊的設備

答案1

是的,確實,這是一個權限問題,與這是一台舊設備這一事實無關。

只需將自己添加到input群組中,就像這樣

sudo usermod -a -G input yourusername

至少這是讓該設備在 Ubuntu 18.04 (Xorg) 下工作所需的

相關內容