WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: [how to run on linux] Wacom CTH-680  (Read 897 times)

Offline xor

  • Hero Member
  • *****
  • Posts: 1264
[how to run on linux] Wacom CTH-680
« on: April 01, 2023, 08:53:50 AM »
[how to run on linux] Wacom CTH-680

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11243
Re: [how to run on linux] Wacom CTH-680
« Reply #1 on: April 01, 2023, 10:22:34 AM »
Hi xor
Plug in the tablet and run:
Code: [Select]
lsusb | grep -i Wacom
You should see something similar to:
Code: [Select]
Bus 001 Device 004: ID 056a:0303 Wacom Co., Ltd
Now take the the last 4 digits of the ID number, 0303 in this example
and see if your device is supported:
Code: [Select]
tc@E310:~$ modinfo wacom | grep 0303
alias:          hid:b0003g0101v0000056Ap00000303
In this example the device is supported because the alias ends in  0303.

Make sure the kernel loaded the wacom driver:
Code: [Select]
lsmod | grep -i Wacom
If that command did not print a result, try loading the driver:
Code: [Select]
sudo modprobe wacom
You might also need some of the following:
input-tablet-touchscreen-KERNEL.tcz
libwacom.tcz
libinput.tcz
xf86-input-wacom.tcz

Offline xor

  • Hero Member
  • *****
  • Posts: 1264
Re: [how to run on linux] Wacom CTH-680
« Reply #2 on: April 02, 2023, 09:36:57 AM »
I was able to get it working this way!
but I think it should be converted to a shorter command system.

what can we do about it?!

Code: [Select]
usb-utils.tcz

tc@box:~$ lsusb
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 005 Device 004: ID 045e:0750 Microsoft Corp. Wired Keyboard 600
Bus 005 Device 003: ID 045e:0719 Microsoft Corp. Xbox 360 Wireless Adapter
Bus 005 Device 002: ID 055f:021f Mustek Systems, Inc. SNAPSCAN e22
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 002: ID 058f:6366 Alcor Micro Corp. Multi Flash Reader
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 006: ID 056a:0303 Wacom Co., Ltd CTH-680 [Intuos Pen & Touch (M)]
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
tc@box:~$

Code: [Select]
input-tablet-touchscreen-KERNEL.tcz
libwacom.tcz
libinput.tcz
xf86-input-wacom.tcz

sudo modprobe wacom
« Last Edit: April 02, 2023, 09:57:56 AM by xor »