Wacom Bamboo Pen and Touch Tablet
Today I hunkered down and blew $100 on a Wacom Bamboo tablet (Pen and Touch). I purchased it fully expecting to be returning it in a day or two because it just would not work at all with Linux. I’m happy to admit; I’m wrong!
The touch portion “works” but it’s very glitchy and hard to control. The pen on the other hand is really good; about as good as I would expect from a $100 Wacom tablet. My mother in law swears by her Tablet (top of the line 4-5 year old Wacom). This little Bamboo even spans my dual monitors with out any adjustments. It did take a bit to setup, but once it was going; it works great.
Initially I used this site to get things rolling. I ventured back to the good old Ubuntu forums for the specifics. In my case I specifically needed to know “HOW IN THE HELL TO MAKE IT LEFT HANDED”?! In the end; that was very easy to take care of, and things have been just peachy ever since. If I were to do it again; I may only purchase the Pen version; but knowing I have the touch side of things if I want to tweak them is kind of fun.
Here are one of my first sketches from the Wacom Bamboo Pen and Touch:

First Wacom Bamboo Sketch
This image was drawn using The Gimp with a pencil set to 3 with Pressure sensitivity set up in devices. I’ve been quickly falling in love with Inkscape, so I’m sure I’ll be pushing out more drawings using that application; it’s freakin’ awesome!
[edit]
Thought I better go through what I did and do with the Wacom Tablet now that the installation process is fresh again:
I got most of the rest of this at: UbuntuGeek
I put it down here in case that link ever goes dead.
tar -xf linuxwacom-0.8.8-8.tar.bz2 (your version may be newer).
cd linuxwacom-0.8.8-8/
./configure --enable-wacom
cd src/2.6.30/
make
sudo cp wacom.ko /lib/modules/`uname -r`/kernel/drivers/input/tablet/
sudo rmmod wacom
sudo modprobe wacom
I put this script in my ~/.config directory to make my tablet left handed (you can leave out all the HALF commands if you one of those “RIGHT HANDED” people.
#!/bin/bash
xsetwacom set "Wacom BambooFun 2FG 4x5 Finger" rotate HALF
xsetwacom set "Wacom BambooFun 2FG 4x5 Finger pad" rotate HALF
xsetwacom set "Wacom BambooFun 2FG 4x5 Pen" rotate HALF
xsetwacom set "Wacom BambooFun 2FG 4x5 Pen eraser" rotate HALF
xsetwacom set "Wacom BambooFun 2FG 4x5 Pen" button1 1
xsetwacom set "Wacom BambooFun 2FG 4x5 Pen" button2 2
xsetwacom set "Wacom BambooFun 2FG 4x5 Pen" button3 3
The last thing you need to do is to add “wacom” to the /etc/modules file so you will not have to redo the modprobe each reboot.
[/edit]




