Dimensione: 18152
Commento: modificate parecchie cose
|
Dimensione: 18187
Commento: Revisione completata
|
Le cancellazioni sono segnalate in questo modo. | Le aggiunte sono segnalate in questo modo. |
Linea 166: | Linea 166: |
== Tablet == Per fare funzionare la funzione tablet è necessario installare i seguenti pacchetti: {{{ sudo apt-get install xserver-xorg-input-wacom wacom-tools xinput xournal matchbox-keyboard }}} Se durante l'installazione dovesse apparire qualcosa, scegliere ''autosave once''. Dopodichè abilitare i nuovi elementi digitando:{{{ sudo ln -s /dev/input/wacom /dev/wacom }}} Infine riavviare. Questo potrebbe non essere bastato per far funzionare il tablet. Nel caso digitare {{{ sudo gedit /etc/X11/xorg.conf }}} e modificare come segue: {{{ Section "InputDevice" Driver "wacom" Identifier "cursor" Option "Device" "/dev/ttyS0" Option "Type" "cursor" Option "ForceDevice" "ISDV4" Option "BottomX" "28800" Option "BottomY" "21760" Option "Mode" "absolute" Option "TPCButton" "on" EndSection Section "InputDevice" Driver "wacom" Identifier "stylus" Option "Device" "/dev/ttyS0" Option "Type" "stylus" Option "ForceDevice" "ISDV4" Option "BottomX" "28800" Option "BottomY" "21760" Option "Mode" "absolute" Option "TPCButton" "on" EndSection Section "InputDevice" Driver "wacom" Identifier "eraser" Option "Device" "/dev/ttyS0" Option "Type" "eraser" Option "ForceDevice" "ISDV4" Option "BottomX" "28800" Option "BottomY" "21760" Option "Mode" "absolute" Option "TPCButton" "on" EndSection }}} e aggiungere o cambiare questa parte: {{{ InputDevice "cursor" "SendCoreEvents" InputDevice "stylus" "SendCoreEvents" InputDevice "eraser" "SendCoreEvents" }}} Poi editare/creare il file {{{/etc/serial.conf}}}, e aggiungere: {{{ #Stylus pen /dev/ttyS0 port 0x06f8 irq 6 uart 16550A }}} Per avviare il programma di scrittura: {{{ xournal }}} == Comandi di avvio wireless e bluetooth == I seguenti comandi devono tutti essere digitati in un terminale. === Avviare il bluetooth === {{{ echo on > /proc/driver/acerhk/blueled }}} === Disattivare il bluetooth === {{{ echo off > /proc/driver/acerhk/blueled }}} === Avviare la wireless === {{{ echo on > /proc/driver/acerhk/wirelessled }}} === Disattivare la wireless === {{{ echo off > /proc/driver/acerhk/wirelessled }}} == Permettere allo schermo di ruotare == creare un file in {{{usr/bin/}}} chiamato {{{rotate}}}: {{{ sudo gedit /usr/bin/rotate }}} e al suo interno inserire: {{{ #!/bin/bash function ROTATE() { curr=`xrandr | awk '/Current rotation/ { print $4 }'` case $curr in normal) CW ;; *) NORMAL ;; esac } function PORTRAIT() { echo portrait } function LANDSCAPE() { echo landscape } function NORMAL() { xrandr -o normal xsetwacom set "stylus" Rotate NONE PORTRAIT } function CCW() { xrandr -o right xsetwacom set "stylus" Rotate CCW LANDSCAPE } function CW() { xrandr -o right xsetwacom set "stylus" Rotate CW LANDSCAPE } function INVERT() { xrandr -o inverted xsetwacom set "stylus" Rotate UD LANDSCAPE } case $1 in -l) CCW ;; -r) CW ;; -n) NORMAL ;; -i) INVERT ;; *) ROTATE ;; esac }}} Per ruotare lo schermo da terminale, digitare: {{{ rotate }}} == Per avviare la tastiera virtuale == Avviare l'applicazione '''Keyboard''' dal menù '''Accessori''' di '''Gnome''', oppure da terminale con il comando:{{{ matchbox-keyboard }}} == Abilitare Aixgl e installare Beryl == Poiché l'accelerazione 3D è già attiva basta poi seguire questa semplice [http://wiki.beryl-project.org/index.php?title=Install/Ubuntu/Edgy/AiGLX guida]. |
|
Linea 321: | Linea 514: |
== Tablet == Per fare funzionare la funzione tablet è necessario installare i seguenti pacchetti: {{{ sudo apt-get install xserver-xorg-input-wacom wacom-tools xinput xournal matchbox-keyboard }}} Se durante l'installazione dovesse apparire qualcosa, scegliere ''autosave once''. Dopodichè abilitare i nuovi elementi digitando:{{{ sudo ln -s /dev/input/wacom /dev/wacom }}} Infine riavviare. Questo potrebbe non essere bastato per far funzionare il tablet. Nel caso digitare {{{ sudo gedit /etc/X11/xorg.conf }}} e modificare come segue: {{{ Section "InputDevice" Driver "wacom" Identifier "cursor" Option "Device" "/dev/ttyS0" Option "Type" "cursor" Option "ForceDevice" "ISDV4" Option "BottomX" "28800" Option "BottomY" "21760" Option "Mode" "absolute" Option "TPCButton" "on" EndSection Section "InputDevice" Driver "wacom" Identifier "stylus" Option "Device" "/dev/ttyS0" Option "Type" "stylus" Option "ForceDevice" "ISDV4" Option "BottomX" "28800" Option "BottomY" "21760" Option "Mode" "absolute" Option "TPCButton" "on" EndSection Section "InputDevice" Driver "wacom" Identifier "eraser" Option "Device" "/dev/ttyS0" Option "Type" "eraser" Option "ForceDevice" "ISDV4" Option "BottomX" "28800" Option "BottomY" "21760" Option "Mode" "absolute" Option "TPCButton" "on" EndSection }}} e aggiungere o cambiare questa parte: {{{ InputDevice "cursor" "SendCoreEvents" InputDevice "stylus" "SendCoreEvents" InputDevice "eraser" "SendCoreEvents" }}} Poi editare/creare il file {{{/etc/serial.conf}}}, e aggiungere: {{{ #Stylus pen /dev/ttyS0 port 0x06f8 irq 6 uart 16550A }}} Per avviare il programma di scrittura: {{{ xournal }}} == Comandi di avvio wireless e bluetooth == I seguenti comandi devono tutti essere inseriti in una shell. === Avviare il bluetooth === {{{ echo on > /proc/driver/acerhk/blueled }}} === Disattivare il bluetooth === {{{ echo off > /proc/driver/acerhk/blueled }}} === Avviare la wireless === {{{ echo on > /proc/driver/acerhk/wirelessled }}} === Disattivare il bluetooth === {{{ echo off > /proc/driver/acerhk/wirelessled }}} == Permettere allo schermo di ruotare == Creiamo un file in {{{usr/bin/}}} chiamato {{{rotate}}} {{{ sudo gedit /usr/bin/rotate }}} e al suo interno inserite: {{{ #!/bin/bash function ROTATE() { curr=`xrandr | awk '/Current rotation/ { print $4 }'` case $curr in normal) CW ;; *) NORMAL ;; esac } function PORTRAIT() { echo portrait } function LANDSCAPE() { echo landscape } function NORMAL() { xrandr -o normal xsetwacom set "stylus" Rotate NONE PORTRAIT } function CCW() { xrandr -o right xsetwacom set "stylus" Rotate CCW LANDSCAPE } function CW() { xrandr -o right xsetwacom set "stylus" Rotate CW LANDSCAPE } function INVERT() { xrandr -o inverted xsetwacom set "stylus" Rotate UD LANDSCAPE } case $1 in -l) CCW ;; -r) CW ;; -n) NORMAL ;; -i) INVERT ;; *) ROTATE ;; esac }}} Per girare lo schermo da shell, digitate: {{{ rotate }}} == Per avviare la tastiera virtuale == Avviamo l'applicazione '''Keyboard''' nel menù «'''Accessori'''» di '''Gnome''', oppure da shell {{{ matchbox-keyboard }}} == Abilitare Aixgl e installare Beryl == Poiché l'accelerazione 3D è già attiva basta poi seguire questa semplice [http://wiki.beryl-project.org/index.php?title=Install/Ubuntu/Edgy/AiGLX guida]. == Link == |
== Ulteriori risorse == |
|
|||
Marca: |
Acer |
||
Modello: |
Travelmate C310 |
||
Ram: |
1 GB |
||
Processore: |
Intel Pentium M |
||
Scheda Video: |
NVIDIA GeForceT Go 6200 |
||
Distribuzione Utilizzata: |
Kubuntu 6.10 «Edgy Eft» |
||
Immagine(Hardware/Notebook/AcerTravelmateC310/acertravel.png,150) |
In questa pagina è riportato il resoconto dell'installazione di Kubuntu 6.10 «Edgy Eft» sul portatile Acer Travelmate C310. |
Inoltre verranno riportate le informazioni generali sul riconoscimento dell'hardware e i possibili metodi di installazione
Rilevamento dell'hardware
Dispositivi connessi
Per verificare il corretto rilevamento dell'hardware del portatile, è sufficiente aprire un terminale e digitare il seguente comando:
lspci
Il comando restituirà una schermata simile alla seguente:
00:00.0 Host bridge: Intel Corporation 82852/82855 GM/GME/PM/GMV Processor to I/O Controller (rev 02) 00:00.1 System peripheral: Intel Corporation 82852/82855 GM/GME/PM/GMV Processor to I/O Controller (rev 02) 00:00.3 System peripheral: Intel Corporation 82852/82855 GM/GME/PM/GMV Processor to I/O Controller (rev 02) 00:02.0 VGA compatible controller: Intel Corporation 82852/855GM Integrated Graphics Device (rev 02) 00:02.1 Display controller: Intel Corporation 82852/855GM Integrated Graphics Device (rev 02) 00:1d.0 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 (rev 03) 00:1d.1 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 (rev 03) 00:1d.2 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 (rev 03) 00:1d.7 USB Controller: Intel Corporation 82801DB/DBM (ICH4/ICH4-M) USB2 EHCI Controller (rev 03) 00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 83) 00:1f.0 ISA bridge: Intel Corporation 82801DBM (ICH4-M) LPC Interface Bridge (rev 03) 00:1f.1 IDE interface: Intel Corporation 82801DBM (ICH4-M) IDE Controller (rev 03) 00:1f.3 SMBus: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus Controller (rev 03) 00:1f.5 Multimedia audio controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller (rev 03) 00:1f.6 Modem: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Modem Controller (rev 03) 02:01.0 CardBus bridge: O2 Micro, Inc. OZ711EC1 SmartCardBus Controller (rev 20) 02:01.1 CardBus bridge: O2 Micro, Inc. OZ711EC1 SmartCardBus Controller (rev 20) 02:03.0 FireWire (IEEE 1394): Texas Instruments TSB43AB22/A IEEE-1394a-2000 Controller (PHY/Link) 02:05.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5705M Gigabit Ethernet (rev 03) 02:06.0 Network controller: Intel Corporation PRO/Wireless 2200BG Network Connection (rev 05)
Processore
Per visualizzare i dettagli sul processore, aprire in lettura il file /proc/cpuinfo digitando in un terminale:
cat /proc/cpuinfo
Verranno visualizzati dei dettagli simili ai seguenti:
rocessor : 0 vendor_id : GenuineIntel cpu family : 6 model : 13 model name : Intel(R) Pentium(R) M processor 1.50GHz stepping : 8 cpu MHz : 600.000 cache size : 2048 KB fdiv_bug : no hlt_bug : no f00f_bug : no coma_bug : no fpu : yes fpu_exception : yes cpuid level : 2 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss tm pbe up est tm2 bogomips : 1201.08
I valori differiscono a seconda dei modelli di processori, qui si fa riferimento ad un Intel Pentium M 1.50GHz. |
Configurazione dei componenti
Scheda video Intel
Riconosciuta automaticamente
Scheda wireless
Riconosciuta automaticamente
Scheda audio
Riconosciuta automaticamente
Harddisk
Riconosciuto, anche con tutte le sue partizioni. Abilitata la scrittura su NTFS con [:Hardware/DispositiviPartizioni/MontarePartizioni/NtfsLetturaScrittura:NTFS-3G].
Masterizzatore
Riconosciuto automaticamente
Display 14" TFT
Riconosciuto automaticamente
Porte USB 2
Riconosciute automaticamente
Mouse Integrato
Riconosciuto, ma con scrolling non funzionante. Per attivarlo digitate in un terminale:
sudo kate /etc/X11/xorg.conf
Dopo le linee:
Section "InputDevice" Identifier "Configured Mouse" Driver "mouse" Option "CorePointer" Option "Device" "/dev/input/mice" Option "Protocol" "ExplorerPS/2" Option "ZAxisMapping" "4 5" Option "Emulate3Buttons" "true" EndSection
aggiungere:
Section "InputDevice" Identifier "Synaptics Touchpad" Driver "synaptics" Option "SendCoreEvents" "true" Option "Device" "/dev/psaux" Option "Protocol" "auto-dev" Option "HorizScrollDelta" "0" Option "SHMConfig" "on" EndSection
Nella sezione Configured Mouse, aggiungere:
InputDevice "Synaptics Touchpad"
Tasti rapidi
Non riconosciuti automaticamente. Scaricare e convertire i seguenti pacchetti:
wget http://olea.org/paquetes-rpm/acerhk/acerhk-0.5.16-olea1_2.6.7_1.desktop.2custom.i386.rpm sudo apt-get install alien sudo alien acerhk-0.5.16-olea1_2.6.7_1.desktop.2custom.i386.rpm sudo dpkg -i acerhk_0.5.16-1_i386.deb
Dopodichè attivare il nuovo modulo:
sudo modprobe
Per farli partire ad ogni avvio digitare:
sudo gedit /etc/modules
e aggiungere acerhk in fondo alla lista. Chiudere e salvare. È possibile poi configurare i tasti direttamente da Kubuntu.
Tablet
Per fare funzionare la funzione tablet è necessario installare i seguenti pacchetti:
sudo apt-get install xserver-xorg-input-wacom wacom-tools xinput xournal matchbox-keyboard
Se durante l'installazione dovesse apparire qualcosa, scegliere autosave once. Dopodichè abilitare i nuovi elementi digitando:
sudo ln -s /dev/input/wacom /dev/wacom
Infine riavviare. Questo potrebbe non essere bastato per far funzionare il tablet. Nel caso digitare
sudo gedit /etc/X11/xorg.conf
e modificare come segue:
Section "InputDevice" Driver "wacom" Identifier "cursor" Option "Device" "/dev/ttyS0" Option "Type" "cursor" Option "ForceDevice" "ISDV4" Option "BottomX" "28800" Option "BottomY" "21760" Option "Mode" "absolute" Option "TPCButton" "on" EndSection Section "InputDevice" Driver "wacom" Identifier "stylus" Option "Device" "/dev/ttyS0" Option "Type" "stylus" Option "ForceDevice" "ISDV4" Option "BottomX" "28800" Option "BottomY" "21760" Option "Mode" "absolute" Option "TPCButton" "on" EndSection Section "InputDevice" Driver "wacom" Identifier "eraser" Option "Device" "/dev/ttyS0" Option "Type" "eraser" Option "ForceDevice" "ISDV4" Option "BottomX" "28800" Option "BottomY" "21760" Option "Mode" "absolute" Option "TPCButton" "on" EndSection
e aggiungere o cambiare questa parte:
InputDevice "cursor" "SendCoreEvents" InputDevice "stylus" "SendCoreEvents" InputDevice "eraser" "SendCoreEvents"
Poi editare/creare il file /etc/serial.conf, e aggiungere:
#Stylus pen /dev/ttyS0 port 0x06f8 irq 6 uart 16550A
Per avviare il programma di scrittura:
xournal
Comandi di avvio wireless e bluetooth
I seguenti comandi devono tutti essere digitati in un terminale.
Avviare il bluetooth
echo on > /proc/driver/acerhk/blueled
Disattivare il bluetooth
echo off > /proc/driver/acerhk/blueled
Avviare la wireless
echo on > /proc/driver/acerhk/wirelessled
Disattivare la wireless
echo off > /proc/driver/acerhk/wirelessled
Permettere allo schermo di ruotare
creare un file in usr/bin/ chiamato rotate:
sudo gedit /usr/bin/rotate
e al suo interno inserire:
function ROTATE() { curr=`xrandr | awk '/Current rotation/ { print $4 }'` case $curr in normal) CW ;; *) NORMAL ;; esac } function PORTRAIT() { echo portrait } function LANDSCAPE() { echo landscape } function NORMAL() { xrandr -o normal xsetwacom set "stylus" Rotate NONE PORTRAIT } function CCW() { xrandr -o right xsetwacom set "stylus" Rotate CCW LANDSCAPE } function CW() { xrandr -o right xsetwacom set "stylus" Rotate CW LANDSCAPE } function INVERT() { xrandr -o inverted xsetwacom set "stylus" Rotate UD LANDSCAPE } case $1 in -l) CCW ;; -r) CW ;; -n) NORMAL ;; -i) INVERT ;; *) ROTATE ;; esac
Per ruotare lo schermo da terminale, digitare:
rotate
Per avviare la tastiera virtuale
Avviare l'applicazione Keyboard dal menù Accessori di Gnome, oppure da terminale con il comando:
matchbox-keyboard
Abilitare Aixgl e installare Beryl
Poiché l'accelerazione 3D è già attiva basta poi seguire questa semplice [http://wiki.beryl-project.org/index.php?title=Install/Ubuntu/Edgy/AiGLX guida].
Configurazione Xorg
Copio il mio file /etc/X11/xorg.conf nel caso ci dovessero essere problemi di configurazione:
Section "Files" # path to defoma fonts FontPath "/usr/share/X11/fonts/misc" FontPath "/usr/share/X11/fonts/100dpi:unscaled" FontPath "/usr/share/X11/fonts/75dpi:unscaled" FontPath "/usr/share/X11/fonts/Type1" FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" FontPath "/usr/local/share/fonts" EndSection Section "Module" Load "i2c" Load "bitmap" Load "dbe" Load "ddc" Load "dri" Load "extmod" Load "freetype" Load "glx" Load "int10" Load "type1" Load "vbe" 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" "ExplorerPS/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 "HorizScrollDelta" "0" Option "SHMConfig" "on" EndSection Section "InputDevice" Driver "wacom" Identifier "stylus" Option "Device" "/dev/wacom" # Change to # /dev/input/event # for USB Option "Type" "stylus" Option "ForceDevice" "ISDV4" # Tablet PC ONLY EndSection Section "InputDevice" Driver "wacom" Identifier "eraser" Option "Device" "/dev/wacom" # Change to # /dev/input/event # for USB Option "Type" "eraser" Option "ForceDevice" "ISDV4" # Tablet PC ONLY EndSection Section "InputDevice" Driver "wacom" Identifier "cursor" Option "Device" "/dev/wacom" # Change to # /dev/input/event # for USB Option "Type" "cursor" Option "ForceDevice" "ISDV4" # Tablet PC ONLY EndSection Section "Device" Identifier "Intel Corporation 82852/855GM Integrated Graphics Device" Driver "i810" BusID "PCI:0:2:0" Option "XAANoOffscreenPixmaps" EndSection Section "Monitor" Identifier "Generic Monitor" Option "DPMS" HorizSync 28-51 VertRefresh 43-60 EndSection Section "Screen" Identifier "Default Screen" Device "Intel Corporation 82852/855GM Integrated Graphics Device" Monitor "Generic Monitor" DefaultDepth 24 SubSection "Display" Depth 1 Modes "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 4 Modes "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 8 Modes "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 15 Modes "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 16 Modes "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 24 Modes "1024x768" "800x600" "640x480" EndSubSection EndSection Section "ServerLayout" Identifier "Default Layout" Screen "Default Screen" InputDevice "Generic Keyboard" InputDevice "Configured Mouse" InputDevice "Synaptics Touchpad" InputDevice "stylus" "SendCoreEvents" InputDevice "cursor" "SendCoreEvents" InputDevice "eraser" "SendCoreEvents" Option "AIGLX" "true" EndSection Section "DRI" Mode 0666 EndSection Section "Extensions" Option "Composite" "Enable" EndSection
Ulteriori risorse
Discussione Forum internazionale su Acer Travelmate C310: [http://www.ubuntuforums.org/showthread.php?t=232250]
Post su Acer Travelmate C110 in [http://forum.ubuntu-it.org/index.php/topic,30549.0.html forum.ubuntu-it.org]