Genius 圖形平板電腦 (WP8060U) 無法在 Debian 上執行

Genius 圖形平板電腦 (WP8060U) 無法在 Debian 上執行

我想將我的舊 Genius MousePen 8x6 圖形平板電腦與運行 Debian Stretch(測試)amd64 和 Gnome 3.20 的筆記型電腦一起使用。在我重置作業系統之前,平板電腦已經可以工作,但現在不行了。如果我用筆觸摸數位板,LED 會閃爍,但遊標不會移動,也不會識別到任何點擊。 (即使在libinput-debug-events

~ % lsusb
Bus 002 Device 009: ID 5543:0005 UC-Logic Technology Corp. Tablet WP8060U

(lsusb -v 這裡:http://nopaste.linux-dev.org/?1119974)。

 ~ % xinput list  
⎡ Virtual core pointer                      id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ RAPOO RAPOO 5G Wireless Device            id=11   [slave  pointer  (2)]
⎜   ↳ SynPS/2 Synaptics TouchPad                id=14   [slave  pointer  (2)]
⎜   ↳ UC-LOGIC Tablet WP8060U Mouse             id=9    [slave  pointer  (2)]
⎣ Virtual core keyboard                     id=3    [master keyboard (2)]
[...]

通常平板電腦在此處顯示為兩個裝置:UC-LOGIC Tablet WP8060U MouseUC-LOGIC Tablet WP8060U Pen。第一個設備用於可選的滑鼠(我沒有它,所以我無法嘗試),第二個設備用於筆,它不起作用。

我還發現了什麼(也是我認為最重要的):

% sudo libinput-ist-devices 
libinput error: libinput bug: Device 'UC-LOGIC Tablet WP8060U Pen' does not meet tablet criteria. Ignoring this device.
[...]
Device:           UC-LOGIC Tablet WP8060U Mouse
Kernel:           /dev/input/event15
Group:            4
Seat:             seat0, default
Capabilities:     pointer 
Tap-to-click:     n/a
Tap-and-drag:     n/a
Tap drag lock:    n/a
Left-handed:      disabled
Nat.scrolling:    disabled
Middle emulation: disabled
Calibration:      n/a
Scroll methods:   button
Click methods:    none
Disable-w-typing: n/a
Accel profiles:   flat *adaptive
Rotation:         n/a

我啟動了即時 Lubuntu 16.04,平板電腦工作正常,並且xinput list顯示libinput-list-devices了兩個裝置。

那麼,我能做些什麼來解決這個問題呢?

答案1

我沒有解決辦法,但經過半天的挫敗感,我想如果您使用 Debian 8(“Stretch”),我可以為您提供解決方法。

我有完全相同的症狀:

  • UC-LOGIC 平板電腦 WP8060U 滑鼠和筆均在 (K)ubuntu 下工作,然後經過災難性的xserver-xorg升級到最新的LTS,切換到Debian 8(使用1:7.7+18)後筆設備消失。
  • libinput向 /var/log/Xorg.0.log 寫入一條訊息,表示由於內部錯誤,它無法處理筆設備。
  • 安裝xserver-xorg-input-evdev看起來是一個不錯的選擇,因為它報告捕獲筆設備,但不久之後 libinput 嘗試掛接它,遇到內部錯誤,並停用該設備。

我的解決方法是:

  1. 安裝xserver-xorg-input-evdev
  2. 將以下節放入/etc/X11/xorg.conf(這實際上是我的 xorg.conf 的全部內容):
    “輸入類別”部分
       識別碼“evdev 平板電腦包羅萬象”
       MatchIsTablet“開啟”
       MatchDevicePath“/dev/input/event*”
       驅動程式“evdev”
    結束部分

這顯然是一個libinput錯誤:它甚至被記錄到日誌檔案中。希望有一天有人能修復它,然後平板筆就能正常運作(TM)。

希望這可以幫助。

相關內容