Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
Have a Nikon L3 digital camera.
Downloaded digikam with success.
Went in and tried to put the camera
in the USB but got, Error Connecting.
Have tried for 3 day's to get
hooked up so I can see my Pics.
You should probably post what linux distribution you are using. It would help people give you suggestions.
You would also get a better response by putting a different subject other than "help me" on your question.
My first recommendation is to use Ubuntu. I had to do no configuring of my digital camera with Ubuntu. I used Digikam a couple of years ago on Debian and it was a real pain to get it working.
You should change the devgid and busgid to a group which you are in. In most distros GID=10 is wheel, so you could add your user to wheel group and that would work also.
Don't forget you must remount usbfs:
# mount /proc/bus/usb -o,remount
I don't know anything about the digicam program, but it sounds like it is making things more complicated than necessary. All I do to look at my pictures from my camera is to connect the camera to the computer through the mini-usb cable, do a
Code:
dmesg
to get the address of the camera (probablt /dev/sda1, but could be other places), and then mount that location to another point, like in /media, or /home, or /mnt/camera if it exists. If dmesg sees it as /dev/sda1, then as root I would do:
Code:
mount /dev/sda1 /mnt/camera
That should allow you to browse into /mnt/camera and navigate down to your pictures. You may need to mess with the permissions to copy/modify them.
I went over to the Camera Title and put in Nikon L3
and chose USB then, Enter
The following came up.
Under Title, Nikon L3
Under Model, AEG Snap 300
Under Port, usb:
Under Path, There was nothing.
Could the problem be in, no Path?
If it is, what would I have to do?
Papamo
This camera uses a SD memory module as far as I can see so it will be treated as a storage device. Create a new directory under root called /camera or use /mnt/camera or /mnt/NikonL3 its entirely up to you. Add the following line to /etc/fstab;
/dev/sda1 /mnt/camera vfat rw,user,noauto 0 0
note the /mnt/camera depends on the directory structure you choose.
In digikam go to Camera -> add new and on the right under camera title enter the name then select usb and under mount path add the line as in the fstab eg as above ;
/mnt/camera
To get it working from the command line as root do;
mount /dev/sda1 /mnt/camera or
if you are using kde then go to System -> Info Centre -> storage devices click on the device and select mount. Now go back to digikam and select the camera and it should show the pictures.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.