You are not logged in.
Pages: 1
When I switch on my camera connected by usb, in lshal I see following:
lshal -m
Start monitoring devicelist:
-------------------------------------------------
19:38:40.714: usb_device_4a9_318d_7385E3A818584C6C9FFB25F5919B0662 added
19:38:40.756: usb_device_4a9_318d_7385E3A818584C6C9FFB25F5919B0662_if0 added
19:43:40.307: usb_device_4a9_318d_7385E3A818584C6C9FFB25F5919B0662_if0 removed
19:43:40.329: usb_device_4a9_318d_7385E3A818584C6C9FFB25F5919B0662 removed
But system didn't find mounted camera.
I have no idea what I should look for. I shall be very grateful if You help me.
Offline
What camera model is it?
I think you have to install something like gphoto because the camera won't act like a mass storage device...
Offline
Can you mount it manually? Try:
sudo mount -t vfat /dev/sdxx /mnt
where "sdxx" is a pointer to your camera. I don't know how to tell which one is my camera, so I usually guess.
Examples:
/dev/sda1
/dev/sdb1
/dev/sdb2
...
Offline
Mounting it like that only works if it's a usb mass storage (UMS) device, as Urfaust already said. If it is, dmesg will tell you the correct device name - or you can guess, like drcouzelis.
If it's not UMS, it will probably be PTP (Picture Transfer Protocol), and for that you need gphoto2. Some cameras support both protocols, selectable on the camera's menu.
Offline
What camera model is it?
SX10 IS
I think you have to install something like gphoto because the camera won't act like a mass storage device...
libgphoto2 is installed.
Can you mount it manually? Try:
sudo mount -t vfat /dev/sdxx /mnt
where "sdxx" is a pointer to your camera. I don't know how to tell which one is my camera, so I usually guess.
I can't find one.
ls /dev/
adsp core input mixer pts sda3 stderr tty12 tty2 tty27 tty34 tty41 tty49 tty56 tty63 urandom vcs7 vcsa7
agpgart cpu_dma_latency kmem network_latency random sda4 stdin tty13 tty20 tty28 tty35 tty42 tty5 tty57 tty7 vcs vcsa vga_arbiter
audio disk kmsg network_throughput root sequencer stdout tty14 tty21 tty29 tty36 tty43 tty50 tty58 tty8 vcs1 vcsa1 zero
block dsp log null rtc sequencer2 tty tty15 tty22 tty3 tty37 tty44 tty51 tty59 tty9 vcs2 vcsa2
bsg fd lp0 parport0 rtc0 sg0 tty0 tty16 tty23 tty30 tty38 tty45 tty52 tty6 ttyS0 vcs3 vcsa3
bus full mcelog port sda shm tty1 tty17 tty24 tty31 tty39 tty46 tty53 tty60 ttyS1 vcs4 vcsa4
char fw0 mem psaux sda1 snapshot tty10 tty18 tty25 tty32 tty4 tty47 tty54 tty61 ttyS2 vcs5 vcsa5
console initctl misc ptmx sda2 snd tty11 tty19 tty26 tty33 tty40 tty48 tty55 tty62 ttyS3 vcs6 vcsa6
Mounting it like that only works if it's a usb mass storage (UMS) device, as Urfaust already said. If it is, dmesg will tell you the correct device name - or you can guess, like drcouzelis.
usb 1-1: new high speed USB device using ehci_hcd and address 2
usb 1-1: configuration #1 chosen from 1 choice
usb 1-1: USB disconnect, address 2
usb 1-1: new high speed USB device using ehci_hcd and address 3
usb 1-1: configuration #1 chosen from 1 choice
usb 1-1: USB disconnect, address 3
usb 1-1: new high speed USB device using ehci_hcd and address 4
usb 1-1: configuration #1 chosen from 1 choice
usb 1-1: USB disconnect, address 4
usb 1-1: new high speed USB device using ehci_hcd and address 5
usb 1-1: configuration #1 chosen from 1 choice
usb 1-1: USB disconnect, address 5
usb 1-1: new high speed USB device using ehci_hcd and address 6
usb 1-1: configuration #1 chosen from 1 choice
usb 1-1: USB disconnect, address 6
usb 1-1: new high speed USB device using ehci_hcd and address 7
usb 1-1: configuration #1 chosen from 1 choice
usb 1-1: USB disconnect, address 7
usb 1-1: new high speed USB device using ehci_hcd and address 8
usb 1-1: configuration #1 chosen from 1 choice
Some cameras support both protocols, selectable on the camera's menu.
I couldn't find something like this.
Offline
So it's PTP, and you're using gphoto2, which means the camera won't mount, as it is not a block device. Your first post indicated that you were expecting automatic access to the camera, but that's not going to happen until you configure it. Our wiki doesn't seem to have much on this topic, so I'd recommend you start at gphoto.org.
There is another option - take the flash card out of the camera, put it in a USB card reader, and mount it as a UMS device.
Offline
So it's PTP, and you're using gphoto2, which means the camera won't mount, as it is not a block device. Your first post indicated that you were expecting automatic access to the camera, but that's not going to happen until you configure it. Our wiki doesn't seem to have much on this topic, so I'd recommend you start at gphoto.org.
Hm. But it works before.
There is another option - take the flash card out of the camera, put it in a USB card reader, and mount it as a UMS device.
Yeah. I know. But I would like use both ways.
Offline
Pages: 1