와콤 인튜어스 CTH-490CK

와콤 인튜어스 CTH-490CK

나는 내 것을 얻으려고 노력 중이야와콤 인튜어스 CTH-490CKArch Linux를 시작하고 실행해 보세요. 장치가 인식되고 버튼을 제외한 모든 기능이 작동됩니다. 그러나 대부분의 가이드에서는 최신 커널을 사용할 때 불필요한 올바른 커널 모듈을 설치할 것을 권장합니다(4.9.8-1나는). 읽었어요 삭제libwacom그리고 방금 설치했어요xf86-입력-와콤그리고-wacom-dkms를 입력하세요.내 문제를 해결할 수도 있습니다(독일 Arch Linux 포럼에 게시) 삭제하려고 했지만libwacom다음과 같은 오류가 발생했습니다.

오류: 트랜잭션을 준비할 수 없습니다(종속성을 충족할 수 없음) ::libinput: libwacom을 제거하면 'libwacom' 종속성이 중단됩니다.

패키지를 강제로 제거( pacman -Rdd libwacom)하면 마우스와 키보드 또는 외부 입력 장치가 없어졌습니다. Wacom 기기가 보이지 않아서/개발자새로운 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"

태블릿에 있는 4개의 하드웨어 버튼을 작동시키는 방법과 그 안에 장치를 불러오는 방법에 대한 제안 사항이 있습니까?/개발자? 자세한 내용은 아래에서 확인하세요. 더 많은 정보가 필요하시면 알려주세요.

$ 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

관련 정보