Ici, certains informations qui m'ont servies sous linux (ubuntu).
Configuration Tablette Wacom
Voici le fichier /etc/X11/xorg.conf (du moins une partie)
Section "InputDevice"
Driver "wacom"
Identifier "Wacom Stylus"
Option "Device" "/dev/input/wacom"
Option "Type" "stylus"
Option "USB" "on"
Option "Button2" "3"
Option "Button3" "2"
Option "Mode" "absolute"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "Wacom Eraser"
Option "Device" "/dev/input/wacom"
Option "Type" "eraser"
Option "USB" "on"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "Wacom Mouse"
Option "Device" "/dev/input/wacom"
Option "Type" "cursor"
Option "Mode" "relative"
Option "USB" "on"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "Wacom Tablet"
Option "Device" "/dev/input/wacom"
Option "Type" "pad"
Option "ButtonsOnly" "on"
#option pour le mode 'pro'
Option "TPCButton" "on"
Option "USB" "on"
EndSection
[...]
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "Wacom Tablet" "SendCoreEvents"
InputDevice "Wacom Stylus" "SendCoreEvents"
InputDevice "Wacom Eraser" "SendCoreEvents"
InputDevice "Wacom Mouse" "SendCoreEvents"
InputDevice "Synaptics Touchpad"
EndSection