xsetwacom command not found
In this troubleshooting guide we learn how to fix xsetwacom command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
xsetwacom: command not found
or when using sudo you get the following error message
sudo: xsetwacom: command not found
Solutions to xsetwacom: command not found
How To Fix xsetwacom: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xsetwacom is provided by xserver-xorg-input-wacom package.
xserver-xorg-input-wacom is:
This package provides the X.Org driver for Wacom tablet devices.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xserver-xorg-input-wacom
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xserver-xorg-input-wacom.
sudo apt -y install xserver-xorg-input-wacom
Or if you have aptitude installed you can use the following command.
sudo aptitude install xserver-xorg-input-wacom
Summary
In this tutorial we learn how to fix xsetwacom command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.