This is a collection of graphics tablet drivers for the Linux kernel, produced and maintained by the DIGImend project. We maintain this package to provide newer drivers for older kernel versions which don't have them, and to allow users to test new drivers before we contribute them to the mainline kernel.
See the list of supported tablets on the project website.
Consider becoming a patron of the project maintainer to help make more tablets work with Linux.
Kernel v3.5 or newer is required.
Download appropriate files for one of the releases from the releases page. The "Download ZIP" link on the right of the GitHub page leads to the source of the current development version, use it only if you know what you're doing.
If you're using Debian or a derived distro, such as Ubuntu, and are installing a release, please use the .deb package. If you're not using a Debian-based distro, or the .deb package didn't work, you can install the driver using DKMS, or manually, as described below.
Source is either an unpacked release tarball (.tar.gz file), an unpacked source code archive downloaded from GitHub (.zip file), or source code checked out from Git.
Before installing from source in any way, make sure you have the headers for your kernel installed (on Debian-based systems):
sudo apt-get install -y "linux-headers-$(uname -r)"
or (on Fedora-based systems):
sudo dnf install -y "kernel-devel-uname-r == $(uname -r)"
If you get "Error: Unable to find a match" from the above command, make sure your kernel is up-to-date, and if not, update it and try again.
DKMS (Dynamic Kernel Module Support) is a system for installing out-of-tree Linux kernel modules, such as DIGImend kernel drivers. It helps make sure the modules are built with correct kernel headers and are properly installed, and also automatically reinstalls the modules when the kernel is updated.
Installing with DKMS is the recommended way of installing development versions of DIGImend kernel drivers.
To install with DKMS, make sure you have the dkms
package installed (on
Debian-based distros):
sudo apt-get install -y dkms
or (on Fedora-based distros):
sudo dnf install -y dkms
After that, run the following command from the source directory to install:
sudo make dkms_install
Watch for any errors in the output, and if the drivers installed successfully, they will be automatically rebuilt and reinstalled each time the kernel is updated.
To install from source manually, first build the drivers. Run the following command in the source directory:
make
Then, to install the drivers, run this command in the same directory:
sudo make install
Note that if you built and installed the drivers this way, you will need to
run make clean
in the source directory, and then redo the above, after each
kernel upgrade.
On Ubuntu, and possibly other distros, the driver installation process attempts to cryptographically sign the modules being installed. Most of the users don't have the system configured to support this, so during the installation they get error messages similar to these:
INSTALL /home/danghai/digimend-kernel-drivers/hid-uclogic.ko
At main.c:160:
- SSL error:02001002:system library:fopen:No such file or directory: bss_file.c:175
- SSL error:2006D080:BIO routines:BIO_new_file:no such file: bss_file.c:178
sign-file: certs/signing_key.pem: No such file or directory
The above basically means that the system tried to sign the module, but couldn't find the key to sign with. This does not interfere with module installation and operation and can safely be ignored. That is, unless you set up module signature verification, but then you would recognize the problem, and would be able to fix it.
If you're installing Debian packages, or installing from source with DKMS, you might hit a bug in DKMS which prevents some of the driver modules from installing. If you do, you will see a message like this while trying to install the drivers:
hid-uclogic.ko:
Running module version sanity check.
Error! Module version 7 for hid-uclogic.ko
is not newer than what is already found in kernel 4.9.0-5-amd64 (7).
You may override by specifying --force.
For details see upstream pull-request fixing the issue.
To fix that you can apply the patch linked above yourself, or execute the below command:
sudo sed -i -e 's/\<unset res$/res=()/' /usr/sbin/dkms
Be aware that the operation of the above command is inexact, and might not work, or might break DKMS. You've been warned. In any case, simply reinstall DKMS to restore it.
After installing the drivers, make sure the previous versions of the drivers were unloaded. To do that, simply reboot the machine. Alternatively, execute the following command:
sudo modprobe -r hid-kye hid-uclogic hid-polostar hid-viewsonic
and reconnect the tablet.
If your tablet is supported, its pen will work after this, and applications will be able to recognize the pressure after appropriate configuration. Refer to the application documentation for instructions on how to do that, but in most cases it is enough to simply enable the tablet in the application.
By default, your tablet will be handled by the libinput X.org driver
(xserver-xorg-input-libinput
package in Debian, Ubuntu, and derived distros,
xorg-x11-drv-libinput
in Fedora and derived distros). This driver will
support reporting pen coordinates and pressure, and some frame controls.
However, it will not support configuring pressure curves, keyboard shortcuts
for buttons on the tablet frame, or other advanced features. For that you
will need to use the Wacom driver. To do that, make sure you have the package
installed (xserver-xorg-input-wacom
or xorg-x11-drv-wacom
) and write the
following to /etc/X11/xorg.conf.d/50-tablet.conf
file:
Section "InputClass"
Identifier "Tablet"
Driver "wacom"
MatchDevicePath "/dev/input/event*"
MatchUSBID "<VID>:<PID>"
EndSection
Here <VID>
and <PID>
would be the tablet's USB vendor and product IDs
respectively, as seen in lsusb
output. E.g. if your tablet's line in lsusb
output looks like this:
Bus 001 Device 003: ID 256c:006e
then your /etc/X11/xorg.conf.d/50-tablet.conf
should look like this:
Section "InputClass"
Identifier "Tablet"
Driver "wacom"
MatchDevicePath "/dev/input/event*"
MatchUSBID "256c:006e"
EndSection
Next, log out of your X.org session and login again, or simply restart your
machine. To verify that the tablet is now handled by the Wacom driver execute
xsetwacom list
and check that your tablet appears in the output at least
once.
After that, you should be able to use the xsetwacom
tool to configure the
advanced features.
For example, if xsetwacom list
produces this output:
HID 256c:006e Pad pad id: 9 type: PAD
HID 256c:006e Pen stylus id: 10 type: STYLUS
you can assign Ctrl-Z ("Undo") key combination to the fifth button on the tablet frame this way:
xsetwacom set "HID 256c:006e Pad pad" button 9 key Ctrl Z
Note that buttons are numbered 1, 2, 3, 8, 9, 10, and so on, i.e. buttons 4, 5, 6, and 7 are not used. They're reserved for vertical and horizontal scrolling events by the X server.
Another example: if xrandr
output has this line:
HDMI-3 connected 1440x900+0+0 (normal left inverted right x axis y axis) 408mm x 255mm
you can restrict the tablet input to that display like this:
xsetwacom set "HID 256c:006e Pen stylus" MapToOutput HDMI-3
See the xsetwacom
man page for more parameters and
details.
Note that so far, in most cases, graphical Wacom tablet configuration tools won't work with non-Wacom tablets.
To uninstall a Debian package simply use your favorite package-management tools.
To uninstall a DKMS-installed package execute make dkms_uninstall
as root in
the package source directory.
To uninstall a manually-installed package execute make uninstall
as root in
the package source directory.
If you've manually installed a version of this package before, please uninstall it before installing another one, using the sources you used for installation.
If you're a developer, or simply want to install a development version of the
drivers as a Debian package, make sure you have dpkg-dev
, debhelper
, and
dkms
packages installed, and run the following command in the source
directory:
dpkg-buildpackage -b -uc
The resulting package files will be written to the parent directory.
If you have any problems with the drivers, look through HOWTOs on the project website, and search for solutions and report new issues at the issues page on GitHub. Join the #DIGImend channel on irc.freenode.net to discuss the drivers, tablets, development, to ask for help, and to help others!