Andrew Perrin wrote:

On Mon, 14 Jun 2004, LeVA wrote:



Hi!

I want to download the pictures from a fuji digital camera.



Hi - I use a fuji finepix 310 with no problems.



When I plug it in the usb port, my kernel detects the camera:

-----------###-----------
Jun 14 20:40:22 leva kernel: scsi1 : SCSI emulation for USB Mass Storage
devices
Jun 14 20:40:22 leva kernel: Vendor: FUJIFILM Model: USB-DRIVEUNIT
Rev: 1.00
Jun 14 20:40:22 leva kernel: Type: Direct-Access
ANSI SCSI revision: 02
Jun 14 20:40:22 leva kernel: Attached scsi removable disk sda at scsi1,
channel 0, id 0, lun 0



... good, so the card is available as drive sda



Jun 14 20:40:22 leva kernel: SCSI device sda: 32000 512-byte hdwr
sectors (16 MB)
Jun 14 20:40:22 leva kernel: usb-uhci.c: interrupt, status 3, frame# 611
Jun 14 20:40:22 leva kernel: sda: Write Protect is off
Jun 14 20:40:22 leva kernel:  sda: sda1
Jun 14 20:40:22 leva kernel: WARNING: USB Mass Storage data integrity
not assured
Jun 14 20:40:22 leva kernel: USB Mass Storage device found at 2
-----------###-----------

And after I try to mount it (mount /dev/sda /mnt/fuji):



There's your problem. You need to mount the partition, not the block device:

mount /dev/sda1 /mnt/fuji

I usually use the following:

mount -tvfat -oumask=0000 /dev/sda1 /mnt/fuji



mount -t vfat -oumask=0000 /dev/sda1 /mnt/fuji


?????    ^^^^^

is the space reqd ?

which will allow normal users to access the filesystem.

Cheers,
Andy


---------------------------------------------------------------------- Andrew J Perrin - http://www.unc.edu/~aperrin Assistant Professor of Sociology, U of North Carolina, Chapel Hill [EMAIL PROTECTED] * andrew_perrin (at) unc.edu








--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Reply via email to