Wacom Graphire 2

De FrozenWiki
Aller à la navigation Aller à la recherche

(en construction)

Pour utiliser cette tablette graphique sous linux, il faut d'abord configurer le noyau :

   Device Drivers  --->
     Input device support  --->
       <M> Event interface
     USB support  --->
       <M> USB Human Interface Device (full HID) support
       <M> Wacom Intuos/Graphire tablet support

Puis il faut monter le module :

   $ modprobe wacom

La configuration de Xorg.conf est un peu plus délicate, on va ajouter au fichier les lignes suivantes :

Section "Module"

    ...

    Load        "wacom"

EndSection
Section "InputDevice"

        Identifier      "stylus"
        Driver          "wacom"
        Option          "Type"  "stylus"
        Option          "Device"        "/dev/input/event3"
        Option          "USB"   "on"

EndSection

Section "InputDevice"

        Identifier      "eraser"
        Driver          "wacom"
        Option          "Type"  "eraser"
        Option          "Device"        "/dev/input/event3"
        Option          "USB"   "on"

EndSection

Section "InputDevice"

        Identifier      "cursor"
        Driver          "wacom"
        Option          "Type"  "cursor"
        Option          "Device"        "/dev/input/event3"
        Option          "USB"   "on"

EndSection
Section "ServerLayout"

    ...

    InputDevice "stylus"        "AlwaysCore"
    InputDevice "eraser"        "AlwaysCore"
    InputDevice "cursor"        "AlwaysCore"

EndSection

Sous gentoo on peut aussi emerger le paquet linuxwacom qui va nous ajouter les utilitaires wacdump entre autre :

   $ emerge linuxwacom    


Autres sources d'informations