Drivers
Thinkpad X60 觸摸屏不工作
我在我的 lenovo x60 平板電腦上執行 Manjaro 32 位,並且觸摸屏工作得非常糟糕。我已經安裝了這個
xf86-input-wacom
包,但是每當我嘗試用數字化筆點擊時,游標會點擊整個地方,而不是我的筆所在的地方。我發現如果我執行sudo systemctl restart wacom-inputattach@ttyS0.service
不同的設備,我執行時可能會出現xsetwacom list
. 到目前為止,我已經看到了以下設備:Wacom Serial Penabled Pen stylus id: 12 type: STYLUS Wacom Serial Penabled Pen eraser id: 13 type: ERASER Serial Wacom Tablet WACf008 stylus id: 12 type: STYLUS Serial Wacom Tablet WACf008 eraser id: 13 type: ERASER Serial Wacom Tablet WACf008 eraser id: 14 type: TOUCH Wacom Serial Penabled 1FG Touchscreen Finger touch id: 12 type: TOUCH Wacom Serial Penabled 1FG Touchscreen Pen stylus id: 13 type: STYLUS Wacom Serial Penabled 1FG Touchscreen Pen eraser id: 14 type: ERASER Wacom Serial Penabled 2FG Touchscreen Finger touch id: 12 type: TOUCH Wacom Serial Penabled 2FG Touchscreen Pen stylus id: 13 type: STYLUS Wacom Serial Penabled 2FG Touchscreen Pen eraser id: 14 type: ERASER
除了第二組(Serial Wacom Tablet WACf008 手寫筆)之外,它們都不起作用。這是唯一一個似乎可靠工作的,它只是不經常出現(事實上,它很少出現)。
我以前在 Xubuntu 上也遇到過這種情況。
如果有人有任何解決方法或解決此問題的方法,那將是很棒的,因為我很想將這台筆記型電腦與它的觸摸屏一起使用。
我需要在其中指定一個文件
/etc/X11/xorg.conf.d/90-touchscreen.conf
並刪除wacom-inputattach@ttyS0.service
./etc/X11/xorg.conf.d/90-touchscreen.conf Section "ServerLayout" Identifier "Default Layout" Screen "Default Screen" InputDevice "stylus" "SendCoreEvents" InputDevice "eraser" "SendCoreEvents" EndSection Section "InputDevice" Identifier "stylus" Driver "wacom" Option "Device" "/dev/ttyS0" Option "Type" "stylus" Option "ForceDevice" "ISDV4" Option "Mode" "absolute" Option "SendCoreEvents" "true" Option "Button2" "3" EndSection Section "InputDevice" Identifier "eraser" Driver "wacom" Option "Device" "/dev/ttyS0" Option "Type" "eraser" Option "ForceDevice" "ISDV4" Option "Mode" "absolute" Option "SendCoreEvents" "true" Option "Button1" "2" EndSection Section "Device" Identifier "intel" Driver "intel" Option "RandRRotation" "true" EndSection Section "Monitor" Identifier "Monitor0" EndSection Section "Screen" Identifier "Default Screen" Monitor "Monitor0" Device "intel" EndSection
我不知道如何禁用 Wacom 服務,所以我刪除了服務文件
/usr/lib/systemd/system/wacom-inputattach@.service
有了這個,我上面提到的設備不再出現,而是文件中指定的設備出現了。文件中指定的設備與您預期的一樣工作,沒有投訴或錯誤。
我開始的 Manjaro 論壇主題:https ://forum.manjaro.org/t/lenovo-x60-tablet-touchscreen-not-working/81887