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 Mouse
和UC-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
我啟動了一個 Live Lubuntu 16.04,平板電腦沒有問題,
xinput list
並且libinput-list-devices
都顯示了兩個設備。那麼,我能做些什麼來解決這個問題呢?
我沒有修復,但經過半天的挫折後,如果您使用的是 Debian 8(“Stretch”),我想我有一個解決方法。
我有完全相同的症狀:
- UC-LOGIC 平板電腦 WP8060U 滑鼠和筆都在 (K)ubuntu 下工作,然後在災難升級到最新的 LTS 後,筆設備在切換到 Debian 8 後消失了(使用
xserver-xorg
1:7.7+18)。libinput
向 /var/log/Xorg.0.log 寫入一條消息,說明由於內部錯誤,它無法處理筆設備。- 安裝
xserver-xorg-input-evdev
看起來是一個不錯的選擇,因為它報告擷取筆設備,但不久之後 libinput 嘗試掛接到它,遇到內部錯誤並禁用設備。我的解決方法是:
- 安裝
xserver-xorg-input-evdev
- 將以下節放入
/etc/X11/xorg.conf
(這實際上是我的整個 xorg.conf):“輸入類”部分 標識符“evdev tablet catchall” MatchIsTablet “開啟” MatchDevicePath "/dev/input/event*" 驅動程序“evdev” 端部
這顯然是一個
libinput
錯誤:它甚至被記錄到日誌文件中。希望有一天有人會修復它,然後平板筆將可以正常工作(TM)。希望這可以幫助。