Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[RISOLTO] Canon Powershot G5 e Linux
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

Goto page 1, 2  Next  
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian)
View previous topic :: View next topic  
Author Message
golaprofonda
Apprentice
Apprentice


Joined: 14 Jul 2005
Posts: 236
Location: Modena, Italy

PostPosted: Tue Aug 02, 2005 11:56 am    Post subject: [RISOLTO] Canon Powershot G5 e Linux Reply with quote

Ho un problema :(

Prima, quando usavo ubuntu, la mia fotografica digitale (Canon Powershot G5) veniva riconosciuta da hotplug e montata a caldo, e aprendo gThumb mi scaricavo le foto in tutta comodità.

Perchè Gentoo non me la riconosce, quando la collego mi trova un nuovo dispositivo usb ma gthumb non la riconosce, è come se non fosse collegata. Come mai? Ci vuole qualche modulo del kernel?

Ho provato anche a leggerla come hard-disk montandola /dev/sda ma mi dice che nn cè nessun dispositivo!!

Come devo fare? :cry:
_________________
Linux In Your Mind? http://www.tuxmind.org


Last edited by golaprofonda on Tue Aug 02, 2005 9:10 pm; edited 1 time in total
Back to top
View user's profile Send private message
.:chrome:.
Advocate
Advocate


Joined: 19 Feb 2005
Posts: 4588
Location: Brescia, Italy

PostPosted: Tue Aug 02, 2005 11:58 am    Post subject: Re: Canon Powershot G5 e Linux Reply with quote

hai installato hal e dbus? hai installato hotplug?
ma soprattutto hai compilato e caricato i moduli per scsi-disk, usb-storage e per il file system?
Back to top
View user's profile Send private message
golaprofonda
Apprentice
Apprentice


Joined: 14 Jul 2005
Posts: 236
Location: Modena, Italy

PostPosted: Tue Aug 02, 2005 12:07 pm    Post subject: Re: Canon Powershot G5 e Linux Reply with quote

k.gothmog wrote:
hai installato hal e dbus? hai installato hotplug?
ma soprattutto hai compilato e caricato i moduli per scsi-disk, usb-storage e per il file system?


ho hal e dbus

invece di hotplug uso coldplug..da dei problemi?

ho il modulo usb-storage ma mi manca scsi-disk...sarà per quello??

in che senso il modulo per il file system? della scheda? e che modulo devo caricare?
_________________
Linux In Your Mind? http://www.tuxmind.org
Back to top
View user's profile Send private message
.:chrome:.
Advocate
Advocate


Joined: 19 Feb 2005
Posts: 4588
Location: Brescia, Italy

PostPosted: Tue Aug 02, 2005 12:12 pm    Post subject: Re: Canon Powershot G5 e Linux Reply with quote

coldplug vede le periferiche al boot. serve anche hotplug.
non lo si aggiunge al runlevel default, perché viene gestito tramite coldplug, ma serve

il modulo del disco SCSI non si chiama scsi-disk, ma sd_mod, e ti serve anche sg (SCSI generic support)

per "il modulo del file system" intendevo il supporto al file system del disco della fotocamera. solitamente FAT32
Back to top
View user's profile Send private message
neon
l33t
l33t


Joined: 04 Aug 2003
Posts: 759
Location: Catania, Italy, Europe

PostPosted: Tue Aug 02, 2005 12:15 pm    Post subject: Re: Canon Powershot G5 e Linux Reply with quote

golaprofonda wrote:
[...] quando la collego mi trova un nuovo dispositivo usb ma gthumb non la riconosce, è come se non fosse collegata. Come mai?

Dopo aver riconosciuto la usb solitamente il kernel registra la periferica utilizzando il suo driver controlla dmesg
golaprofonda wrote:
Ho provato anche a leggerla come hard-disk montandola /dev/sda ma mi dice che nn cè nessun dispositivo!!

/dev/sda non e' nulla... prova /dev/sda1

le versioni di gthumb sono le stesse???

P.S. bella macchina ;)
_________________
Io credo che le tecnologie siano moralmente neutrali fino a quando non le utilizziamo - William Gibson

LINEE GUIDA DEL FORUM
Back to top
View user's profile Send private message
golaprofonda
Apprentice
Apprentice


Joined: 14 Jul 2005
Posts: 236
Location: Modena, Italy

PostPosted: Tue Aug 02, 2005 12:27 pm    Post subject: Re: Canon Powershot G5 e Linux Reply with quote

neon wrote:
golaprofonda wrote:
[...] quando la collego mi trova un nuovo dispositivo usb ma gthumb non la riconosce, è come se non fosse collegata. Come mai?

Dopo aver riconosciuto la usb solitamente il kernel registra la periferica utilizzando il suo driver controlla dmesg
golaprofonda wrote:
Ho provato anche a leggerla come hard-disk montandola /dev/sda ma mi dice che nn cè nessun dispositivo!!

/dev/sda non e' nulla... prova /dev/sda1

le versioni di gthumb sono le stesse???

P.S. bella macchina ;)


si adesso posto il messaggio che mi da..
ci provo..
_________________
Linux In Your Mind? http://www.tuxmind.org
Back to top
View user's profile Send private message
golaprofonda
Apprentice
Apprentice


Joined: 14 Jul 2005
Posts: 236
Location: Modena, Italy

PostPosted: Tue Aug 02, 2005 12:31 pm    Post subject: Reply with quote

con dmesg mi dice :

Code:
usb 2-1: new full speed USB device using uhci_hcd and address 4


e con il mount (ho fatto varie prove mi dice):

Code:
shadow enrico # mount -t vfat /dev/sda /mnt/fotocamera
mount: /dev/sda non un dispositivo di blocchi valido
shadow enrico # mount -t vfat /dev/sda1 /mnt/fotocamera
mount: /dev/sda1 non un dispositivo di blocchi valido
shadow enrico # mount -t vfat /dev/sda0 /mnt/fotocamera
mount: il device speciale /dev/sda0 non esiste

_________________
Linux In Your Mind? http://www.tuxmind.org
Back to top
View user's profile Send private message
.:chrome:.
Advocate
Advocate


Joined: 19 Feb 2005
Posts: 4588
Location: Brescia, Italy

PostPosted: Tue Aug 02, 2005 12:34 pm    Post subject: Reply with quote

dmesg dovrebbe dirti nelle righe lì intorno a che dispositivo è associata la tua macchina fotografica
fdisk -l /dev/sd* ti mostra le partizioni
Back to top
View user's profile Send private message
golaprofonda
Apprentice
Apprentice


Joined: 14 Jul 2005
Posts: 236
Location: Modena, Italy

PostPosted: Tue Aug 02, 2005 12:34 pm    Post subject: Re: Canon Powershot G5 e Linux Reply with quote

k.gothmog wrote:
coldplug vede le periferiche al boot. serve anche hotplug.
non lo si aggiunge al runlevel default, perché viene gestito tramite coldplug, ma serve


si ma se faccio

/etc/init.d/hotplug start

mi dice

Code:
 * WARNING:  "hotplug" has already been started.


cioè che è già attivo[/code]
_________________
Linux In Your Mind? http://www.tuxmind.org
Back to top
View user's profile Send private message
golaprofonda
Apprentice
Apprentice


Joined: 14 Jul 2005
Posts: 236
Location: Modena, Italy

PostPosted: Tue Aug 02, 2005 12:36 pm    Post subject: Reply with quote

k.gothmog wrote:
dmesg dovrebbe dirti nelle righe lì intorno a che dispositivo è associata la tua macchina fotografica
fdisk -l /dev/sd* ti mostra le partizioni


non mi restituisce niente, quindi nn cè nessuna partizione sd :cry:

sarà perchè nn ho sd_mod?
_________________
Linux In Your Mind? http://www.tuxmind.org
Back to top
View user's profile Send private message
.:chrome:.
Advocate
Advocate


Joined: 19 Feb 2005
Posts: 4588
Location: Brescia, Italy

PostPosted: Tue Aug 02, 2005 12:46 pm    Post subject: Reply with quote

golaprofonda wrote:
sarà perchè nn ho sd_mod?

cooooosa? ma scusa... come fai ad avere un disco SCSI se non hai il modulo per gestire i dischi SCSI?
controlla che il tuo kernel supporti i dischi SCSI
Back to top
View user's profile Send private message
golaprofonda
Apprentice
Apprentice


Joined: 14 Jul 2005
Posts: 236
Location: Modena, Italy

PostPosted: Tue Aug 02, 2005 12:54 pm    Post subject: Reply with quote

k.gothmog wrote:
golaprofonda wrote:
sarà perchè nn ho sd_mod?

cooooosa? ma scusa... come fai ad avere un disco SCSI se non hai il modulo per gestire i dischi SCSI?
controlla che il tuo kernel supporti i dischi SCSI


si che l ho..l ho in built-in..

e adesso?
_________________
Linux In Your Mind? http://www.tuxmind.org
Back to top
View user's profile Send private message
SilverXXX
l33t
l33t


Joined: 18 Sep 2004
Posts: 885

PostPosted: Tue Aug 02, 2005 2:25 pm    Post subject: Reply with quote

Mi sa che si deve usare gphoto2, e non l'usb-storage. Devi riemergere gthumb con la use gphoto2.
_________________
about:mozilla
Back to top
View user's profile Send private message
.:chrome:.
Advocate
Advocate


Joined: 19 Feb 2005
Posts: 4588
Location: Brescia, Italy

PostPosted: Tue Aug 02, 2005 3:20 pm    Post subject: Reply with quote

devi capire esattamente cosa succede quando attacchi la macchina al computer.
è impossibile che venga loggata solo quella linea, ci deve pur essere altro nei log :(
Back to top
View user's profile Send private message
golaprofonda
Apprentice
Apprentice


Joined: 14 Jul 2005
Posts: 236
Location: Modena, Italy

PostPosted: Tue Aug 02, 2005 4:06 pm    Post subject: Reply with quote

k.gothmog wrote:
devi capire esattamente cosa succede quando attacchi la macchina al computer.
è impossibile che venga loggata solo quella linea, ci deve pur essere altro nei log :(


con dmesg mi dice solo così

Code:
usb 2-1: new full speed USB device using uhci_hcd and address 6


adesso provo a riemergere gthumb con la USE gphoto2..infatti anche secondo me nn riesce ad usarla come mass storage
_________________
Linux In Your Mind? http://www.tuxmind.org
Back to top
View user's profile Send private message
.:chrome:.
Advocate
Advocate


Joined: 19 Feb 2005
Posts: 4588
Location: Brescia, Italy

PostPosted: Tue Aug 02, 2005 4:18 pm    Post subject: Reply with quote

ma la questione è che tu devi vedere il disco usb
sei certo di avere caricato tutti i moduli necessari? devi essertene dimenticato uno per forza
Back to top
View user's profile Send private message
golaprofonda
Apprentice
Apprentice


Joined: 14 Jul 2005
Posts: 236
Location: Modena, Italy

PostPosted: Tue Aug 02, 2005 4:22 pm    Post subject: Reply with quote

k.gothmog wrote:
ma la questione è che tu devi vedere il disco usb
sei certo di avere caricato tutti i moduli necessari? devi essertene dimenticato uno per forza


dimenticato? di quelli che mi hai detto no..ricapitolando:

hal INSTALLATO
dbus INSTALLATO
usb_storage MODULO ATTIVO
sg MODULO ATTIVO
sd_mod (BUILT-IN non so come si chiama ma è quello dei dischi SCSI no?)
_________________
Linux In Your Mind? http://www.tuxmind.org
Back to top
View user's profile Send private message
.:chrome:.
Advocate
Advocate


Joined: 19 Feb 2005
Posts: 4588
Location: Brescia, Italy

PostPosted: Tue Aug 02, 2005 4:24 pm    Post subject: Reply with quote

echi, uhci (o ohci), usb-storage ?
Back to top
View user's profile Send private message
golaprofonda
Apprentice
Apprentice


Joined: 14 Jul 2005
Posts: 236
Location: Modena, Italy

PostPosted: Tue Aug 02, 2005 4:37 pm    Post subject: Reply with quote

k.gothmog wrote:
echi, uhci (o ohci), usb-storage ?


vuoi dire ehci???8O

si ce li ho tutti..
ho compilato gThumb con la USE=gphoto2..adesso mi rileva la macchina ma al posto delle foto mi mette una X rossa
vuol dire che per lui è vuota? magari nn legge il filesystem?
_________________
Linux In Your Mind? http://www.tuxmind.org
Back to top
View user's profile Send private message
golaprofonda
Apprentice
Apprentice


Joined: 14 Jul 2005
Posts: 236
Location: Modena, Italy

PostPosted: Tue Aug 02, 2005 4:47 pm    Post subject: Re: Canon Powershot G5 e Linux Reply with quote

Invece con gtkam mi rileva la macchina (nome e tutto) ma quando clicco applica dopo detect mi dice

Could not initialize camera

:cry: :cry:
_________________
Linux In Your Mind? http://www.tuxmind.org
Back to top
View user's profile Send private message
golaprofonda
Apprentice
Apprentice


Joined: 14 Jul 2005
Posts: 236
Location: Modena, Italy

PostPosted: Tue Aug 02, 2005 4:51 pm    Post subject: Re: Canon Powershot G5 e Linux Reply with quote

HO CAPITO!!!!!!

Posso accedere solo da ROOT!!!!

Come faccio a dare i permessi di leggere e scrivere sulla usb anche all utente normale?
_________________
Linux In Your Mind? http://www.tuxmind.org
Back to top
View user's profile Send private message
RobbaZ
n00b
n00b


Joined: 18 Nov 2004
Posts: 63

PostPosted: Tue Aug 02, 2005 5:01 pm    Post subject: Reply with quote

Io avevo seguito questo thread per la mia canon S30
https://forums.gentoo.org/viewtopic-t-305146-highlight-libexif.html

:)
Back to top
View user's profile Send private message
SilverXXX
l33t
l33t


Joined: 18 Sep 2004
Posts: 885

PostPosted: Tue Aug 02, 2005 5:07 pm    Post subject: Reply with quote

Devi essere nel gruppo usb
_________________
about:mozilla
Back to top
View user's profile Send private message
golaprofonda
Apprentice
Apprentice


Joined: 14 Jul 2005
Posts: 236
Location: Modena, Italy

PostPosted: Tue Aug 02, 2005 5:12 pm    Post subject: Reply with quote

SilverXXX wrote:
Devi essere nel gruppo usb


il mio utente è enrico

facendo

usermod -g usb enrico

non mi aggiunge il grubbo usb.come faccio?
_________________
Linux In Your Mind? http://www.tuxmind.org
Back to top
View user's profile Send private message
SilverXXX
l33t
l33t


Joined: 18 Sep 2004
Posts: 885

PostPosted: Tue Aug 02, 2005 5:53 pm    Post subject: Reply with quote

Nel file /etc/group, aggiuni g il tuo nome utente in fondo alla riga dove trovi usb
_________________
about:mozilla
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian) All times are GMT
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum