Page 1 of 2 12 LastLast
Results 1 to 10 of 18

Thread: Manually mounting a Digital Camera

  1. #1
    Join Date
    Dec 2004
    Location
    Göteborg, Sweden
    Beans
    14

    Post Manually mounting a Digital Camera

    Just bought a digital camera (Sony DSC-V3), took some pictures and tried to offload the images to my computer via the USB port.
    On Windows you normally get an indication telling you that the camera has been detected and mounted and the images can be transferred. Being a Linux and Ubuntu newbie I wasn't sure what to expect when I connected the camera to the USB port.
    So connected the camera and switched on the USB transfer mode, but nothing happened. Tried to access the photos using gThumb as was suggested in a few posts, but my camera wasn't detected. I suspect the camera uses PTP over USB, so I manually set the value to Sony DSC-V1, but the camera was still not being detected.
    So I tried to mount the drive manually as explained in the excellent Ubuntu Starter Guide, as follows:



    1. Created a new mount point: $ sudo mkdir /mnt/camera
    2. Mounted the camera: $ sudo mount /dev/sda1 /mnt/camera -t vfat -o umask=000
    and I had instant access to my photos in the /mnt/camera directory.

    I am not certain, but I think it's important to unmount the device before disconnecting it from the computer by issuing the $ sudo umount /mnt/camera command.

    The above may seem simple to Linux gurus, but I spent the best part of an hour trying to figure that out. I'm hoping my post will help others in the same situation.

  2. #2
    Join Date
    Dec 2004
    Location
    Stafford, England
    Beans
    18

    Re: Manually mounting a Digital Camera

    Quote Originally Posted by gregorian21
    Just bought a digital camera (Sony DSC-V3), took some pictures and tried to offload the images to my computer via the USB port.
    On Windows you normally get an indication telling you that the camera has been detected and mounted and the images can be transferred. Being a Linux and Ubuntu newbie I wasn't sure what to expect when I connected the camera to the USB port.
    So connected the camera and switched on the USB transfer mode, but nothing happened. Tried to access the photos using gThumb as was suggested in a few posts, but my camera wasn't detected. I suspect the camera uses PTP over USB, so I manually set the value to Sony DSC-V1, but the camera was still not being detected.
    So I tried to mount the drive manually as explained in the excellent Ubuntu Starter Guide, as follows:



    1. Created a new mount point: $ sudo mkdir /mnt/camera
    2. Mounted the camera: $ sudo mount /dev/sda1 /mnt/camera -t vfat -o umask=000
    and I had instant access to my photos in the /mnt/camera directory.

    I am not certain, but I think it's important to unmount the device before disconnecting it from the computer by issuing the $ sudo umount /mnt/camera command.

    The above may seem simple to Linux gurus, but I spent the best part of an hour trying to figure that out. I'm hoping my post will help others in the same situation.
    Thanks for that.
    It'll come in handy when I receive my install disk sometime next year.

  3. #3
    Join Date
    Nov 2004
    Location
    Nyack NY USA
    Beans
    988
    Distro
    Ubuntu Development Release

    Re: Manually mounting a Digital Camera

    You many also want to check out gtkam and digikam (gtk and kde apps) which use the libphoto2 libraries to read digital camera info. Worked well with my canon powershot a75 (after upgrading libphoto2)

  4. #4
    Join Date
    Dec 2004
    Beans
    3

    Re: Manually mounting a Digital Camera

    this configuration works to webcams????

    how I can make work my webcam???

  5. #5
    Join Date
    Dec 2004
    Location
    Göteborg, Sweden
    Beans
    14

    Re: Manually mounting a Digital Camera

    Quote Originally Posted by adroit
    this configuration works to webcams????

    how I can make work my webcam???
    The above procedure should work for digital cameras or external HDDs connected via USB. As for webcams, I haven't tried one with Ubuntu (or any flavour of Linux for that matter), so I wouldn't have a clue... sorry.

    A quick search on gnomefiles.org brought up apps like camorama.
    Give it a try if you haven't already.

  6. #6
    Join Date
    Jan 2005
    Location
    Firenze, Italy
    Beans
    279

    Re: Manually mounting a Digital Camera

    Quote Originally Posted by kleeman
    You many also want to check out gtkam and digikam (gtk and kde apps) which use the libphoto2 libraries to read digital camera info. Worked well with my canon powershot a75 (after upgrading libphoto2)
    Hi,
    one question regarding digikam: i have problems accessing photos from a Powershot A400 camera when running digikam as a non root user. Everything goes smoothly when running as root. I've tried to change the write permissions of /usr/bin/digikam but nothing has changed.
    Any ideas,
    thanks,
    MC

  7. #7
    Join Date
    Nov 2004
    Beans
    68
    Distro
    Gutsy Gibbon Testing

    Re: Manually mounting a Digital Camera

    to add...you may also want to edit your fstab to make things a bit easier
    Code:
    /dev/sda1       /media/usb      auto    rw,user,noauto  0   0
    that way, users can mount by:
    Code:
    mount /dev/sda1
    and have read/write access to it.

  8. #8
    Join Date
    Nov 2004
    Beans
    303

    Re: Manually mounting a Digital Camera

    Actually, it is not needed to mount the digital camera when plugged in, as it will be automatically mounted.

    However, if you do not unmount it, you will experience corruption on whatever kind of removable media it is. A reformat will be needed, and all data will be lost. Trust me, I learned the hard way, believing that Project Utopia automatically did the unmounting as well.

  9. #9
    Join Date
    Jan 2005
    Location
    Firenze, Italy
    Beans
    279

    Re: Manually mounting a Digital Camera

    Hi,
    i don't need to mount the camera as this is automatically done by digikam... as a root user..... I cannot access it as a normal user.

    MC

  10. #10
    Join Date
    Oct 2004
    Beans
    29

    Re: Manually mounting a Digital Camera

    Quote Originally Posted by mirtux
    Hi,
    i don't need to mount the camera as this is automatically done by digikam... as a root user..... I cannot access it as a normal user.

    MC
    $ sudo mount /dev/sda1 /mnt/camera -t vfat -o umask=000
    mount: special device /dev/sda1 does not exist

    :/

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •