我最近购买了 Wacom Intuos 图形板(具体来说,Create Pen & Touch Tablet,我认为这是 Intuos 4 的品牌重塑),我正在尝试在我的 Linux Mint 15 系统上配置它。
我跟着这些 指示关于配置Linux Wacom 项目的 wiki
以下是有关我的计算机安装的一些相关规格:
$ uname -r
3.8.0-33-generic
/etc/X11/xorg.conf.d $ ls
10-evdev.conf 50-synaptics.conf 51-synaptics-quirks.conf
11-evdev-quirks.conf 50-vmmouse.conf
11-evdev-trackpoint.conf 50-wacom.conf
(请注意,wacom 配置在那里。)
/etc/X11/xorg.conf.d $ X -version
X.Org X Server 1.13.3
Release Date: 2013-03-07
X Protocol Version 11, Revision 0
当我运行所有配置并发出命令时,根据这些命令中的反馈,一切(最终)都运行正常。但仍然什么也没有......当我输入如下命令时找不到设备:
/etc/X11/xorg.conf.d $ xinput list
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ Logitech USB Optical Mouse id=11 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Power Button id=6 [slave keyboard (3)]
↳ Video Bus id=7 [slave keyboard (3)]
↳ Power Button id=8 [slave keyboard (3)]
↳ Logitech USB Keyboard id=9 [slave keyboard (3)]
↳ Logitech USB Keyboard id=10 [slave keyboard (3)]
它根本无法识别 wacom 数位板。我查看了 wacom 配置文件,它们似乎都是正确的(据我所知)。我正在使用推荐的“热插拔”方法(注意目录xorg.conf.d
)。我不知道下一步该尝试什么。
我知道问题出在配置上,因为我们家里也有一台Mac,我可以让它在Mac上运行。我在平板电脑上使用过 GIMP 和类似的绘图应用程序,效果非常好。
我还应该提到:当我插入它时,灯会亮起,表明它正在通电,当我单击按钮时,它们可以工作,但平板电脑垫本身根本无法工作......用笔或通过触碰。
答案1
我刚给我女儿买了其中一件,必须把它继续下去。作为品牌重塑的一部分,Wacom 似乎更改了 USB ID,因此需要最新的驱动程序。我使用的是 Xubuntu 12.10,但希望所有 Ubuntu 下游的过程都是相似的。
这些是我使用的步骤:
- 在这里找到最新的驱动程序版本:http://sourceforge.net/mailarchive/message.php?msg_id=31724061
- 下载驱动程序:http://sourceforge.net/projects/linuxwacom/files/xf86-input-wacom/input-wacom/input-wacom-0.20.0.tar.gz/download
- 请按照此处的说明进行安装:http://sourceforge.net/apps/mediawiki/linuxwacom/index.php?title=Input-wacom
简而言之,步骤是:
- 解压压缩包
- sudo apt-get 安装 linux-headers-$(uname -r)†
- cd 进入 wacom 目录
- 跑步
./configure
- 将文件复制到适当的内核模块位置,如命令
wacom.ko
输出中所示./configure
- 跑步
sudo depmod -a
- 重启
请注意,“安装驱动程序”部分中的
cp
和命令需要 sudo。depmod
之后,检测到平板电脑并加载驱动程序。平板电脑插入后,如果您尝试该lsmod | grep wacom
命令,它应该显示一个条目。
†build-essential
我发现的其他指南中给出的一些其他依赖项;它们可能已经安装在我正在使用的机器上,所以我不确定是否需要任何其他依赖项。