Wacom Graphire 4 (xl) classic
|
|||
Marca: |
Wacom |
||
Modello: |
Graphire 4 xl Classic |
||
Distribuzione utilizzata: |
Ubuntu 7.10 « Gutsy » |
In questa pagina è riportato il procedimento per l installazione della tavoletta grafica Wacom graphire 4 xl Classic sul sistema operativo « Gutsy » Ubuntu 7.10 . |
Rilevamento dell'hardware
Questa procedura è stata verificata per Gutsy.Aprire un il terminale e digitare
{{{lsusb |grep Wacom }}}
* Nota il risultato dovrebbe esser una cosa del genere tuttavia il Bus potrebbe cambiare
{{{Bus 003 Device 005: ID 056a:0015 Wacom Co., Ltd }}}
Installazione
La periferica viene automaticamente riconosciuta a patto che il file xorg.conf non sia stato modificato (fare riferimento xorg.conf di esempio in questo wiki) e che il pacchetto
{{{xserver-xorg-input-wacom }}}
sia installato
Configurazione
Benché sia funzionante mancano alcune funzionalita' , quali la possibilità di usare la rotellina e i due tasti supplementari. Per l'abilitazione di questi strumenti si deve installare il seguente pacchetto:
{{{sudo apt get-install wacom-tools }}}
A questo punto si passa alla configurazione vera e propria.
{{{sudo nano /etc/X11/xorg.conf }}} aggiungere i seguenti elementi:
da aggiungere sotto l ultimo "ImputDevice" che riguarda la wacom (vedere xorg.conf di esempio sotto)
{{{Section "InputDevice"
- Identifier "pad" Driver "wacom" Option "Type" "pad" Option "Device" "/dev/input/wacom"
Option "ButtonsOnly" "on" Option "Button9" "2" Option "Button13" "3" Option "USB" "on"
EndSection }}}
Questo pezzo, invece va aggiunto piu o meno verso la fine (vedere xorg.conf di esempio sotto)
{{{# Uncomment if you have a wacom tablet InputDevice "pad" "SendCoreEvents" }}}
per meglio comprendere dove mettere questi due elementi ecco un xorg.conf di esempio.
# xorg.conf (xorg X Window System server configuration file) # # This file was generated by dexconf, the Debian X Configuration tool, using # values from the debconf database. # # Edit this file with caution, and see the xorg.conf manual page. # (Type "man xorg.conf" at the shell prompt.) # # This file is automatically updated on xserver-xorg package upgrades *only* # if it has not been modified since the last upgrade of the xserver-xorg # package. # # If you have edited this file but would like it to be automatically updated # again, run the following command: # sudo dpkg-reconfigure -phigh xserver-xorg Section "Files" EndSection Section "InputDevice" Identifier "Generic Keyboard" Driver "kbd" Option "CoreKeyboard" Option "XkbRules" "xorg" Option "XkbModel" "pc105" Option "XkbLayout" "it" EndSection Section "InputDevice" Identifier "Configured Mouse" Driver "mouse" Option "CorePointer" Option "Device" "/dev/input/mice" Option "Protocol" "ImPS/2" Option "ZAxisMapping" "4 5" Option "Emulate3Buttons" "true" EndSection Section "InputDevice" Identifier "Synaptics Touchpad" Driver "synaptics" Option "SendCoreEvents" "true" Option "Device" "/dev/psaux" Option "Protocol" "auto-dev" Option "HorizEdgeScroll" "0" EndSection Section "InputDevice" Driver "wacom" Identifier "stylus" Option "Device" "/dev/input/wacom" Option "Type" "stylus" Option "ForceDevice" "ISDV4" # Tablet PC ONLY EndSection Section "InputDevice" Driver "wacom" Identifier "eraser" Option "Device" "/dev/input/wacom" Option "Type" "eraser" Option "ForceDevice" "ISDV4" # Tablet PC ONLY EndSection Section "InputDevice" Driver "wacom" Identifier "cursor" Option "Device" "/dev/input/wacom" Option "Type" "cursor" Option "ForceDevice" "ISDV4" # Tablet PC ONLY EndSection Section "InputDevice" Identifier "pad" Driver "wacom" Option "Type" "pad" Option "Device" "/dev/input/wacom" Option "ButtonsOnly" "on" Option "Button9" "2" Option "Button13" "3" Option "USB" "on" EndSection Section "Device" Identifier "Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller" Driver "intel" BusID "PCI:0:2:0" EndSection Section "Monitor" Identifier "Monitor Generico" Option "DPMS" HorizSync 28-64 VertRefresh 43-60 EndSection Section "Screen" Identifier "Default Screen" Device "Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller" Monitor "Monitor Generico" DefaultDepth 24 SubSection "Display" Modes "1280x800" EndSubSection EndSection Section "ServerLayout" Identifier "Default Layout" Screen "Default Screen" InputDevice "Generic Keyboard" InputDevice "Configured Mouse" # Uncomment if you have a wacom tablet InputDevice "stylus" "SendCoreEvents" InputDevice "cursor" "SendCoreEvents" InputDevice "eraser" "SendCoreEvents" InputDevice "Synaptics Touchpad" "SendCoreEvents" InputDevice "pad" "SendCoreEvents" EndSection
Ora i tasti vengono riconosciuti dal sistema ma non sono ancora associati mentre la rotellina funziona correttamente per settare i tasti\cambiare anche la configurazione della rotellina aprire un terminale e dare
xsetwacom set pad Button1 "core key a" xsetwacom set pad Button2 "core key b"
in questo il bottone 1, se premuto, avrà la stessa funzione del tasto " A " e il tasto 2 avrà la stessa funzione funzione del tasto " B "
si possono fare anche della associazioni con piu tasti ad esempio
button1 ---> ctrl alt F2
{{{xsetwacom set pad Button1 "core key ctrl alt F2" }}}
Con questa combinazione la pressione del tasto uno sarà come digitare CTRL ALT F2 insieme
Per la rotellina:
Potete lasciare invariata la funzionalità della rotellina ma con questa modifica può diventare in breve tempo uno strumento Zoom In e Zoom Out in Gimp per far questo basta associare lo scorrere verso l'alto con il tasto + e lo scorrere in basso con il tasto -
{{{xsetwacom set pad RelWUp "key core +" xsetwacom set pad RelWDn "key core -" }}} un altro uso potrebbe essere questo
{{{xsetwacom set pad RelWUp "key core pgup" xsetwacom set pad RelWDn "key core pgdn" }}}
* Questi comandi devono esser dati ogni volta al riavvio. Per fare cio in maniera automatizzata guardare la sezione per lanciare i programmi all'avvio.