有人可以告诉我如何在ubuntu 18.04中安装Wacom ONE手写板驱动程序吗?
答案 0 :(得分:4)
首先安装以下先决条件:
sudo apt-get install linux-headers-$(uname -r) build-essential
sudo apt-get install autoconf
从here
下载并解压缩input-wacom移至下载的驱动程序所在的目录,然后在终端中输入以下内容:
if test -x ./autogen.sh; then ./autogen.sh; else ./configure; fi && make && sudo make install || echo "Build Failed"
要获取内核模块的版本,请在终端中输入以下内容:
modinfo wacom | grep version
最后使用以下命令更新内核驱动程序:
sudo -s 'apt-get update && apt-get install xserver-xorg-input-wacom'