Wacom Intuos CTH-490CK

Wacom Intuos CTH-490CK

私は私を取得しようとしています。Wacom Intuos 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

ベストアンサー1

おすすめ記事