I tried to follow this webpage.
EDIT after advice:
You need to use apt
command (on debian based distributions) rather than yum
:
sudo apt install wacom
To build the package you should use :
sudo apt update
sudo apt upgrade
sudo reboot
sudo apt install build-essential autoconf linux-headers-$(uname -r)
Building steps (instructions from : Installing input wacom from source):
wget https://github.com/linuxwacom/input-wacom/releases/download/input-wacom-0.46.0/input-wacom-0.46.0.tar.bz2
tar xvf input-wacom-0.46.0.tar.bz2
cd input-wacom-0.46.0/
#./autogen.sh
if test -x ./autogen.sh; then ./autogen.sh; else ./configure; fi && make && sudo make install || echo "Build Failed"
sudo depmod -a
sudo modprobe -v wacom
sudo modprobe -v wacom_w8001
As written on the page, that you've mentioned, if you are using Linux Mint(on page shortened as Mint), you should use:
sudo apt-get install build-essential autoconf linux-headers-$(uname -r)
Linux Mint is Debian based, which means, that it uses apt package manager instead of yum package manager used by Red-Hat like Linux distributions (such as Fedora, CentOS, ...)
xsetwacom --list devices
to get information about your device then usexsetwacom --set
to configure your stylus. – GAD3R Dec 27 '20 at 11:46xserver-xorg-input-wacom
– Elena Greg Dec 27 '20 at 12:01modprobe command
. Try rebooting. – GAD3R Dec 27 '20 at 12:05modprobe: FATAL: Module command not found in directory /lib/modules/4.15.0-64-generic
– Elena Greg Dec 27 '20 at 12:07sudo depmod
thensudo modprobe -v wacom
– GAD3R Dec 27 '20 at 12:32modprobe command
. What should be the result? The program graphical tablet should start to work, or there should be a program wacom? – Elena Greg Dec 27 '20 at 12:54modprobe -v module
it will display something like...ko
. This mean that the kernel module is loaded correctly. – GAD3R Dec 27 '20 at 12:58modprobe
command. – GAD3R Dec 27 '20 at 13:12modprobe: ERROR: missing parameters.
– Elena Greg Dec 27 '20 at 13:23modprobe -v module
gives still the same error – Elena Greg Dec 27 '20 at 13:30uname -r
? . You have this error because the linux-headers isn't installed. – GAD3R Dec 27 '20 at 13:434.15.0-64-generic
– Elena Greg Dec 27 '20 at 13:44