Get Wacom Bamboo Pen Working in Ubuntu Lucid

The new Wacom Bamboo Pen (CTL-460) doesn’t work in Ubuntu Lucid out-of-the-box. You need a newer kernel module than the one that comes with Lucid by default. It’s pretty easy to get it working though, you just need to know how.

Update

It seems that since I published this post four months ago, it helped a lot of people. At that time I couldn’t find a DKMS script that would automatically compile and install the newer module after every kernel upgrade. Also, I didn’t have the time to do it myself. Well, things have changed. After Brett Alton posted his update to my post. Martin Owens replied to his post with a link to a PPA that contains the newer module with a DKMS script. So please, use this PPA and save yourself a lot of trouble! The instructions are really simple, just run this in a terminal:

sudo add-apt-repository ppa:doctormo/wacom-plus<br /> sudo apt-get update<br /> sudo apt-get install wacom-dkms

Don’t forget to register your tablet at the Wacom website, because you can specify Linux as your operating system. We might get even better support if a lot of people do this.

Old post:

First, install some compiling tools and header files:
sudo apt-get install build-essential libx11-dev libxi-dev x11proto-input-dev xserver-xorg-dev tk8.4-dev tcl8.4-dev libncurses5-dev

Next, download the latest linuxwacom driver (0.8.6 at the moment of writing):
wget <a href="http://prdownloads.sourceforge.net/linuxwacom/linuxwacom-0.8.6.tar.bz2">http://prdownloads.sourceforge.net/linuxwacom/linuxwacom-0.8.6.tar.bz2</a>

Now unpack, configure compile and install it:
tar -xf linuxwacom-0.8.6.tar.bz2<br /> cd linuxwacom-0.8.6<br /> ./configure --enable-wacom<br /> cd src/2.6.30/ # I know this is the wrong version, but it's the highest available and it works<br /> make<br /> sudo cp wacom.ko /lib/modules/`uname -r`/kernel/drivers/input/tablet/<br /> sudo rmmod wacom<br /> sudo modprobe wacom

The tablet should work now. You can also add the module name to /etc/modules to automatically load it on boot. There still one issue left for me. In Mac OS X I can use the whole tablet, i.e. the right corner is the right screen corner. In Lucid however the grey lines indicate the screen borders, so the right corner of the gray lines is the right screen corner. This means part of the tablet is not used and this can be quite annoying if you’re used to the previous behavior.

Don’t forget to register your tablet at the Wacom website, because you can specify Linux as your operating system. We might get even better support if a lot of people do this.