Différences
Ci-dessous, les différences entre deux révisions de la page.
| Les deux révisions précédentes Révision précédente Prochaine révision | Révision précédente | ||
| wacom_artpadii [Le 09/11/2008, 12:24] Tonio-fr85 | — (Version actuelle) | ||
|---|---|---|---|
| Ligne 1: | Ligne 1: | ||
| - | ====== Wacom Artpad II, port série. ====== | ||
| - | |||
| - | ===== Compatibilité ===== | ||
| - | |||
| - | Testé sur Kubuntu 8.04 et PC équipé d'une prise série (et non pas via adaptateur série/USB). | ||
| - | |||
| - | ===== Pré-requis ===== | ||
| - | * Disposer des [[:sudo|droits d'administration]] ; | ||
| - | * Disposer d'une [[:internet_et_reseaux|connexion à Internet]] configurée et activée ; | ||
| - | |||
| - | |||
| - | |||
| - | ===== Installation du pilote ===== | ||
| - | |||
| - | Installez les 2 paquets suivants :"wacom-tools" et "xserver-xorg-input-wacom" | ||
| - | |||
| - | <code>sudo apt-get install xserver-xorg-input-wacom wacom-tools</code> | ||
| - | |||
| - | Ou via Synaptic / Adept. | ||
| - | [[:tutoriel:comment_installer_un_paquet|Voir l'aide à "L'installez des paquets]] . | ||
| - | |||
| - | |||
| - | ===== Configuration ===== | ||
| - | |||
| - | == Edition du fichier xorg.conf == | ||
| - | 1) On fait une copie de sécurité : | ||
| - | <code>sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.default</code> | ||
| - | 2) On edit le fichier : | ||
| - | Soit sous Gnome : | ||
| - | <code>gksudo gedit /etc/X11/xorg.conf</code> | ||
| - | Soit sous KDE : | ||
| - | <code>kdesudo kate /etc/X11/xorg.conf</code> | ||
| - | |||
| - | == Modification du fichier xorg.conf == | ||
| - | 1) Section ServerLayout. | ||
| - | Trouvez la section "ServerLayout" : | ||
| - | Début : Section "ServerLayout" | ||
| - | fin : EndSection | ||
| - | |||
| - | Y incerer : | ||
| - | <code> | ||
| - | # WACOM ArtPad | ||
| - | InputDevice  "stylus"  "SendCoreEvents" | ||
| - | InputDevice  "eraser"  "SendCoreEvents" | ||
| - | InputDevice  "cursor"  "SendCoreEvents" # For non-LCD tablets only | ||
| - | # InputDevice  "pad"  # For Intuos3/CintiqV5/Graphire4/Bamboo tablets | ||
| - | # InputDevice  "touch"  "SendCoreEvents" # Only a few TabletPCs support this type | ||
| - | # WACOM ArtPad | ||
| - | </code> | ||
| - | |||
| - | Si la section n'existe pas, copier celle-ci : | ||
| - | <code> | ||
| - | Section "ServerLayout" | ||
| - | Identifier "Default Layout" | ||
| - | screen "Default Screen" | ||
| - | # WACOM ArtPad II | ||
| - | InputDevice  "stylus"  "SendCoreEvents" | ||
| - | InputDevice  "eraser"  "SendCoreEvents" | ||
| - | InputDevice  "cursor"  "SendCoreEvents" # For non-LCD tablets only | ||
| - | # InputDevice  "pad"  # For Intuos3/CintiqV5/Graphire4/Bamboo tablets | ||
| - | # InputDevice  "touch"  "SendCoreEvents" # Only a few TabletPCs support this type | ||
| - | # WACOM ArtPad | ||
| - | EndSection | ||
| - | </code> | ||
| - | |||
| - | 2) Section Inputdevice. | ||
| - | Ajoutez cette section : | ||
| - | <code> | ||
| - | # WACOM ArtPad II | ||
| - | Section "InputDevice" | ||
| - | Driver  "wacom" | ||
| - | Identifier  "stylus" | ||
| - | # Option  "Device"  "/dev/input/wacom" # USB ONLY? | ||
| - | Option  "Device"  "/dev/ttyS0"  # SERIAL ONLY | ||
| - | Option  "Type"  "stylus" | ||
| - | # Option  "ForceDevice"  "ISDV4"  # Tablet PC ONLY | ||
| - | # Option  "USB"  "on"  # USB ONLY | ||
| - | EndSection | ||
| - | |||
| - | Section "InputDevice" | ||
| - | Driver  "wacom" | ||
| - | Identifier  "eraser" | ||
| - | # Option  "Device"  "/dev/input/wacom" # USB ONLY? | ||
| - | Option  "Device"  "/dev/ttyS0"  # SERIAL ONLY | ||
| - | Option  "Type"  "eraser" | ||
| - | # Option  "ForceDevice"  "ISDV4"  # Tablet PC ONLY | ||
| - | # Option  "USB"  "on"  # USB ONLY | ||
| - | EndSection | ||
| - | |||
| - | Section "InputDevice" | ||
| - | Driver  "wacom" | ||
| - | Identifier  "cursor" | ||
| - | # Option  "Device"  "/dev/input/wacom" # USB ONLY? | ||
| - | Option  "Device"  "/dev/ttyS0"  # SERIAL ONLY | ||
| - | Option  "Type"  "cursor" | ||
| - | # Option  "ForceDevice"  "ISDV4"  # Tablet PC ONLY | ||
| - | # Option  "USB"  "on"  # USB ONLY | ||
| - | EndSection | ||
| - | |||
| - | Section "InputDevice" | ||
| - | Driver  "wacom" | ||
| - | Identifier  "pad" | ||
| - | # Option  "Device"  "/dev/input/wacom"  # USB ONLY | ||
| - | Option  "Device"  "/dev/ttyS0"  # SERIAL ONLY | ||
| - | Option  "Type"  "pad" | ||
| - | # Option  "USB"  "on"  # USB ONLY | ||
| - | EndSection | ||
| - | |||
| - | # Uncomment the following section if you have a TabletPC that supports touch | ||
| - | # Section "InputDevice" | ||
| - | # Driver  "wacom" | ||
| - | # Identifier  "touch" | ||
| - | # Option  "Device"  "/dev/ttyS0"  # SERIAL ONLY | ||
| - | # Option  "Device"  "/dev/input/wacom" # USB ONLY | ||
| - | # Option  "Type"  "touch" | ||
| - | # Option  "ForceDevice"  "ISDV4"  # Serial Tablet PC ONLY | ||
| - | # Option  "USB"  "on"  # USB ONLY | ||
| - | # EndSection</code> | ||
| - | |||
| - | 3) Enregistrez (Ctrl+S). | ||
| - | |||
| - | ===== Informations complémentaires ===== | ||
| - | Les informations données ici sont issues du site | ||
| - | [[https://help.ubuntu.com/community/Wacom#Configuring%20the%20%22Extended%20Input%20Devices%22|Ubuntu.org,]] anglais. | ||