Wacom Intuos CTH-490CK

Wacom Intuos CTH-490CK

我正在努力让我的Wacom Intuos CTH-490CK在 Arch Linux 下启动并运行。设备已被识别,除了按钮之外的所有功能都可以工作。但是,大多数指南建议安装正确的内核模块,这在使用最新内核时是不必要的(4.9.8-1就我而言)。我读到删除libwacom并刚刚安装xf86-输入-wacom输入-wacom-dkms可能会解决我的问题(在德国 Arch Linux 论坛上发帖),但试图删除libwacom给我留下了以下错误:

错误:无法准备事务(无法满足依赖项) :: libinput:删除 libwacom 会破坏依赖项“libwacom”

强制删除包 ( pacman -Rdd libwacom) 让我失去了鼠标和键盘或任何外部输入设备。因为我没有看到 Wacom 设备/dev我添加了一条新的 udev 规则:

$ cat /etc/udev/rules.d/10-wacom.rule 
ATTRS{idVendor}=="056a", ATTRS{idProduct}=="0084", SYMLINK+="input/tablet-intuos5-s"

这也行不通。我还尝试使用手动设置组织

$ cat /etc/X11/xorg.conf.d/01-wacom.conf 
Section "InputDevice"
    Driver        "wacom"
    Identifier    "stylus"
    Option        "Device"       "/dev/input/wacom"   # or the corresponding event?? for a static setup
    Option        "Type"         "stylus"
#    Option        "USB"          "on"                 # USB ONLY
#    Option        "Mode"         "Relative"           # other option: "Absolute"
    Option        "Vendor"       "WACOM"
#    Option        "tilt"         "on"  # add this if your tablet supports tilt
    Option        "Threshold"    "5"   # the official linuxwacom howto advises this line
EndSection
Section "InputDevice"
    Driver        "wacom"
    Identifier    "pad"
    Option        "Device"       "/dev/input/wacom"   # or the corresponding event?? for a static setup
    Option        "Type"         "pad"
#    Option        "USB"          "on"                  # USB ONLY
#    Option        "Mode"         "Relative"            # other option: "Absolute"
    Option        "Vendor"       "WACOM"
#    Option        "tilt"         "on"  # add this if your tablet supports tilt
    Option        "Threshold"    "5"   # the official linuxwacom howto advises this line
EndSection
Section "InputDevice"
    Driver        "wacom"
    Identifier    "touch"
    Option        "Device"       "/dev/input/wacom"   # or the corresponding event?? for a static setup
    Option        "Type"         "touch"
#    Option        "USB"          "on"                  # USB ONLY
#    Option        "Mode"         "Relative"            # other option: "Absolute"

您对如何使平板电脑上的四个硬件按钮正常工作以及如何在其中调出设备有什么建议吗?/dev?请在下面找到更多信息。如果您需要更多信息,请告诉我,

$ lsusb | grep -i wacom
Bus 001 Device 005: ID 056a:033c Wacom Co., Ltd

$ xsetwacom --list devices
Wacom Intuos PT S 2 Pen stylus      id: 15  type: STYLUS    
Wacom Intuos PT S 2 Finger touch    id: 16  type: TOUCH     
Wacom Intuos PT S 2 Pad pad         id: 17  type: PAD

$ dmesg | grep -i wacom
[   18.071428] input: Wacom Intuos PT S 2 Pen as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:056A:033C.0005/input/input24
[   18.071554] wacom 0003:056A:033C.0005: hidraw2: USB HID v1.10 Device [Wacom Co.,Ltd. Intuos PTS] on usb-0000:00:14.0-3/input0
[   18.073731] input: Wacom Intuos PT S 2 Finger as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:056A:033C.0006/input/input28
[   18.073852] input: Wacom Intuos PT S 2 Pad as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:056A:033C.0006/input/input29
[   18.073980] wacom 0003:056A:033C.0006: hidraw3: USB HID v1.10 Device [Wacom Co.,Ltd. Intuos PTS] on usb-0000:00:14.0-3/input1

$ lsmod | grep -i wacom
wacom                  90112  0
hid                   114688  6 i2c_hid,hid_generic,usbhid,hid_logitech_dj,wacom,hid_logitech_hidpp
led_class              16384  6 iwlmvm,asus_wmi,sdhci,wacom,input_leds,asus_wireless

相关内容