TOP

Instalar dispositivo Wacom Bamboo CTH-

Para instalar la tableta Wacom bajo Debian y Ubuntu, en mi caso Bamboo CTH-470 lo primero que teneis que tener es el controlador wacom instalado en el sistema (normalmente ya viene instalado)

# apt-get installa wacom-xorg-input-wacom

Luego configuramos la tableta en las X mediante el xorg.conf:

1- Conectamos la tableta por USB

2- Comprobamos que nuestro dispositivo está listado escribiendo en la terminal:

# ls -l /dev/input/

Nos mostrará algo como esto:

root@debian:/home/nerviozzo# crw-rw---- 1 root root  13,  64 2008-02-16 17:46 event0
bash: crw-rw----: no se encontró la orden
root@debian:/home/nerviozzo# crw-rw---- 1 root root  13,  65 2008-02-16 17:46 event1
bash: crw-rw----: no se encontró la orden
root@debian:/home/nerviozzo# crw-rw---- 1 root root  13,  66 2008-02-16 17:46 event2
bash: crw-rw----: no se encontró la orden
root@debian:/home/nerviozzo# crw-rw---- 1 root root  13,  67 2008-02-16 19:13 event3
bash: crw-rw----: no se encontró la orden
root@debian:/home/nerviozzo# crw-rw---- 1 root root  13,  63 2008-02-16 17:46 mice
bash: crw-rw----: no se encontró la orden
root@debian:/home/nerviozzo# crw-rw---- 1 root root  13,  32 2008-02-16 17:46 mouse0
bash: crw-rw----: no se encontró la orden
root@debian:/home/nerviozzo# lrwxrwxrwx 1 root root        6 2008-02-16 19:13 tablet-volito2-4x5 -> event3
bash: lrwxrwxrwx: no se encontró la orden
root@debian:/home/nerviozzo# lrwxrwxrwx 1 root root        6 2008-02-16 19:13 wacom -> event3


Y vemos que se nos han creado los dos últimos enlaces automáticamente, estos son los de nuestra tableta Wacom asi que podemos continuar sabiendo que nos la detecta correctamente.

3- Editamos el xorg.conf

# gedit /etc/X11/xorg.conf

Y añadimos las siguientes líneas:
En la seccion SERVERLAYOUT:

    InputDevice    "cursor" "SendCoreEvents"
    InputDevice    "stylus" "SendCoreEvents"
    InputDevice    "eraser" "SendCoreEvents"

Quedando algo como esto:

Section “ServerLayout”
    Identifier     “Layout0”
    Screen      0  “Screen0” 0 0
    InputDevice    “Keyboard0” “CoreKeyboard”
    InputDevice    “Mouse0” “CorePointer”


    InputDevice    “cursor” “SendCoreEvents”
    InputDevice    “stylus” “SendCoreEvents”
    InputDevice    “eraser” “SendCoreEvents”
EndSection

Creamos 3 secciones nuevas añadiendo lo siguiente:

Section "InputDevice"
    Identifier     "cursor"
    Driver         "wacom"
    Option         "Device" "/dev/input/wacom"
    Option         "Type" "cursor"
    Option         "Mode" "relative"
    Option         "USB" "on"
EndSection
Section "InputDevice"
    Identifier     "stylus"
    Driver         "wacom"
    Option         "Device" "/dev/input/wacom"
    Option         "Type" "stylus"
    Option         "Mode" "absolute"
    Option         "USB" "on"
    Option         "PressCurve" "50,0,100,50"
EndSection
Section "InputDevice"
    Identifier     "eraser"
    Driver         "wacom"
    Option         "Device" "/dev/input/wacom"
    Option         "Type" "eraser"
    Option         "Mode" "absolute"
    Option         "USB" "on"
EndSection

4- Guardamos y reiniciamos las X o reiniciamos el ordenador.

DATOS DE INTERÉS:

Si tenemos varios monitores con Xinerama, entonces añadiremos la línea:
Option "Xinerama" "on"

La opción:
Option "PressCurve" "50,0,100,50"
Sirve para graduar la presión de la tableta.


Para configurar tableta con GIMP pulsar AQUÍ

Para configurar tableta con INKSCAPE pulsar AQUÍ

0 comentarios: