Aqui os dejo un tutorial que me ha funcionado para Wacom en Ubuntu 8.04. Es una traducción.
Empezamos haciendo un directorio para trabajar en la instalación y nos metemos en el (Para introducir todo esto, abre el terminal).
mkdir wacom
cd wacom
Instalamos unas cuantas cosillas...
sudo apt-get install linux-headers-`uname -r` build-essential x11proto-core-dev libxau-dev libxdmcp-dev x11proto-input-dev x11proto-kb-dev xtrans-dev libx11-dev x11proto-xext-dev libxext-dev libxi-dev linux-libc-dev libc6-dev libncurses5-dev xserver-xorg-dev tk8.5-dev tcl8.5-dev -y
Bajamos los drivers y herramientas:
wget http://prdownloads.sourceforge.net/linuxwacom/linuxwacom-0.7.9-11.tar.bz2
tar xjf linuxwacom-0.7.9-11.tar.bz2
cd linuxwacom-0.7.9-11
Compilamos e instalamos:
./configure --enable-wacom
make
sudo make install
Vamos a editar el xorg.conf, para los que tengais GNOME usad gedit y los de KDE Kedit u otra aplicación:
sudo gedit /etc/X11/xorg.conf
Añade al final del Xorg.conf todo esto:
Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/input/wacom"
Option "Type" "stylus"
# Option "ForceDevice" "ISDV4" # Tablet PC ONLY
Option "USB" "on"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/input/wacom"
Option "Type" "eraser"
# Option "ForceDevice" "ISDV4" # Tablet PC ONLY
Option "USB" "on"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/input/wacom"
Option "Type" "cursor"
# Option "ForceDevice" "ISDV4" # Tablet PC ONLY
Option "USB" "on"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "pad"
Option "Device" "/dev/input/wacom"
Option "Type" "pad"
Option "USB" "on"
EndSection
Busca esta seción en el Xorg.conf
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
Inputdevice "Synaptics Touchpad"
EndSection
Y añade, despues de Inputdevice "Synaptics Touchpad" esto:
InputDevice "stylus" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
InputDevice "pad" "SendCoreEvents"
Ahora ejecuta esto:
cp /lib/modules/`uname -r`/kernel/drivers/input/tablet/wacom.ko wacom.ko.`uname -r`
sudo cp linuxwacom-0.7.9-11/src/2.6.24/wacom.ko /lib/modules/`uname -r`/kernel/drivers/input/tablet/wacom.ko
¡¡Listo!! Esta es la fuente, que incluye una solución ademas si esto no funciona. Un saludo:
http://ubuntuforums.org/showthread.php?t=765915