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 | ||
trust_slimline_tb6300 [Le 01/12/2009, 18:17] 213.95.41.13 |
trust_slimline_tb6300 [Le 31/08/2022, 23:29] (Version actuelle) moths-art Passage de http à https sur les liens externes (détecté et corrigé via le bot wiki-corrector (https://forum.ubuntu-fr.org/viewtopic.php?id=2067892) |
||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
====== Tablette graphique Trust Slimline TB6300 ====== | ====== Tablette graphique Trust Slimline TB6300 ====== | ||
+ | ===== Installation du pilote Wizardpen ===== | ||
+ | ==== Lucid Lynx et suivant ==== | ||
+ | On ajoute le dépot suivant: | ||
+ | <code>sudo add-apt-repository ppa:doctormo/xorg-wizardpen</code> | ||
+ | On met à jour les dépots: | ||
- | ===== Installation du pilote Wizardpen ===== | + | <code>sudo apt-get update</code> |
+ | |||
+ | Et on installe le pilote | ||
+ | |||
+ | <code>sudo apt-get install xserver-xorg-input-wizardpen</code> | ||
+ | |||
+ | Voilà c'est terminé, au redémarrage, votre tablette fonctionne. | ||
+ | |||
+ | (peut aussi fonctionner sous Karmic Koala) | ||
+ | ==== Karmic Koala et antérieur ==== | ||
Installer les dépendances | Installer les dépendances | ||
Ligne 118: | Ligne 132: | ||
fi | fi | ||
</code> | </code> | ||
+ | |||
+ | |||
+ | ===== Rajout du support plug&play (avec xorg 7.3 et hal) ===== | ||
+ | |||
+ | Créez le fichier, et rajoutez ce qui suit, ensuite redémarrez le pc. | ||
+ | <code> | ||
+ | cd /etc/hal/fdi/policy/ | ||
+ | sudo > 99-x11-wizardpen.fdi | ||
+ | sudo gedit /etc/hal/fdi/policy/99-x11-wizardpen.fdi | ||
+ | </code> | ||
+ | |||
+ | <code> | ||
+ | <?xml version="1.0" encoding="ISO-8859-1" ?> | ||
+ | <deviceinfo version="0.2"> | ||
+ | <device> | ||
+ | <!-- This MUST match with the name of your tablet obtained --> | ||
+ | <!-- in Step 2 specified previously --> | ||
+ | <match key="info.product" contains="UC-LOGIC Tablet WP8060U"> | ||
+ | <merge key="input.x11_driver" type="string">wizardpen</merge> | ||
+ | <merge key="input.x11_options.SendCoreEvents" type="string">true</merge> | ||
+ | |||
+ | <!-- Modify these configuration accordingly --> | ||
+ | <!-- See CONFIGURATION OPTIONS section for the full-set of --> | ||
+ | <!-- configurable options --> | ||
+ | <merge key="input.x11_options.TopX" type="string">0</merge> | ||
+ | <merge key="input.x11_options.TopY" type="string">214</merge> | ||
+ | <merge key="input.x11_options.BottomX" type="string">32747</merge> | ||
+ | <merge key="input.x11_options.BottomY" type="string">32762</merge> | ||
+ | <merge key="input.x11_options.MaxX" type="string">32747</merge> | ||
+ | <merge key="input.x11_options.MaxY" type="string">32762</merge> | ||
+ | </match> | ||
+ | </device> | ||
+ | </deviceinfo> | ||
+ | </code> | ||
+ | |||
Ligne 133: | Ligne 182: | ||
<code> | <code> | ||
- | xinput set-button-map "UC-LOGIC Tablet WP8060U" 2 3 | + | xinput set-button-map "UC-LOGIC Tablet WP8060U" 1 2 3 |
</code> | </code> | ||
Finalement, redémarrer le pc. | Finalement, redémarrer le pc. | ||
+ | ===== En savoir plus ===== | ||
+ | [[https://ubuntuforums.org/showthread.php?t=1337260|Documentation en anglais (forum ubuntu)]] |