Search code examples
ubuntuwacom

Wacom ONE pen tablet driver in ubuntu 18.04


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


Solution

  • 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'