Just a quick update to my earlier article on getting the Wacom Bamboo CTL-460 working in Fedora: I have tested the tablet with F14 now and while it's still not automatically detected, at least the udev rules part of the procedure I detailed earlier is now obsolete. Here is what I had to do to get the Bamboo to play ball in Fedora 14:
# yum install gcc gcc-c++ kernel-headers kernel-devel libXi-devel libX11-devel xorg-x11-proto-devel xorg-x11-server-devel tk-devel tcl-devel ncurses-devel xorg-x11-drv-wacom-devel libXrandr-devel$ tar -xf linuxwacom-0.8.8-10.tar.bz2$ cd linuxwacom-0.8.8-10 and configure the package: $ ./configure --enable-wacom# make$ uname -r and change into the directory with the module you just compiled: $ cd src/2.6.30/ (note that this doesn't necessarily correspond to your actual kernel version)# cp wacom.ko /lib/modules/<KERNELVERSION>/kernel/drivers/input/tablet/# modprobe wacom and a # depmod -a and plug in your tablet. It should work right away now!You still need to repeat steps 6 & 7 every time you do a kernel update (so keep the wacom.ko file around somewhere in your home directory) but this at least cuts the initial steps nearly in half.