Estou tentando colocar meu Wacom Intuos CTH-490CK em execução no Arch Linux. O dispositivo é reconhecido e tudo, exceto os botões, funcionam. No entanto, a maioria dos guias sugere instalar o módulo do kernel correto, o que não é necessário ao usar um kernel recente ( 4.9.8-1 no meu caso). Eu li que removendo libwacom e apenas instalando xf86-input-wacom e input-wacom- dkms pode corrigir meus problemas ( postar no Arch Linux Forum alemão ), mas tentando remover libwacom me deixa com o seguinte erro:
error: failed to prepare transaction (could not satisfy dependencies) :: libinput: removing libwacom breaks dependency 'libwacom'
Forçar a exclusão do pacote ( pacman -Rdd libwacom
) me deixa sem mouse e teclado ou qualquer dispositivo de entrada externo. Como não vejo um dispositivo Wacom em / dev , adicionei uma nova regra do udev:
$ cat /etc/udev/rules.d/10-wacom.rule
ATTRS{idVendor}=="056a", ATTRS{idProduct}=="0084", SYMLINK+="input/tablet-intuos5-s"
Isso também não funcionou. Eu também tentei uma configuração manual usando o xorg :
$ 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"
Você tem alguma sugestão sobre como ativar os quatro botões de hardware no tablet e como posso ativar um dispositivo em / dev ? Por favor, encontre informações adicionais abaixo. Se você precisar de mais, é só me avisar,
$ 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
Tags xorg arch-linux xsetwacom