Wacom ONE pen tablet driver in ubuntu 18.04

Nayan Sarkar picture Nayan Sarkar · Aug 16, 2018 · Viewed 12.7k times · Source

Can someone tell me how to install Wacom ONE pen tablet driver in ubuntu 18.04 ?

Answer

Neal Titus Thomas picture Neal Titus Thomas · Aug 16, 2018

First install the following pre-requisites:

sudo apt-get install linux-headers-$(uname -r) build-essential 
sudo apt-get install autoconf                                  

Download and untar input-wacom from here

Move into the directory where your downloaded driver resides and enter the following in the terminal:

if test -x ./autogen.sh; then ./autogen.sh; else ./configure; fi && make && sudo make install || echo "Build Failed"

To get the verion of the kernel module, enter the following into a terminal:

modinfo wacom | grep version

Finally update the kernel driver with the following:

sudo -s 'apt-get update && apt-get install xserver-xorg-input-wacom'