LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 01-02-2006, 04:16 PM   #1
TexLinux
LQ Newbie
 
Registered: Jan 2006
Location: Finland
Distribution: Slackware 10.2
Posts: 8

Rep: Reputation: 0
HP Photosmart E217 digital camera


Hi there!
I've got Slackware and I have a problem with my HP Photosmart E217 digital camera.
How do I access it? How do I get the photos out to put them on hard disk?

I'd be more than glad to find out that...
 
Old 01-02-2006, 08:18 PM   #2
Slum
Member
 
Registered: May 2005
Location: Rhode Island, USA
Distribution: Slackware w/ bleeding edge kernel.
Posts: 37

Rep: Reputation: 15
Quote:
Originally Posted by TexLinux
Hi there!
I've got Slackware and I have a problem with my HP Photosmart E217 digital camera.
How do I access it? How do I get the photos out to put them on hard disk?

I'd be more than glad to find out that...

The usb-storage driver should handle this device properly. I've always had luck with mass storage devices and Linux.

1. Plug the device into your usb port
2. Make sure the usb-storage device driver is loaded, use 'lsmod | grep usb' -- you will then see usb-storage if it is.
3. If usb-storage is not loaded, simply run 'modprobe usb-storage' as root.
4. Run the 'dmesg' command from a console, check the output to make sure it has detected your device properly.
5. If the device is detected properly you will see a line in the output message similar to "usb-storage: Attached device to sda1". This means that your device is waiting at /dev/sda1
6. Mount the device, as root issue the following commands:
mkdir /mnt/camera
mount -t vfat /dev/sda1 /mnt/camera
cd /mnt/camera
7. Your camera should now be mounted on /mnt/camera You can use your favorite file manager to browser through it's directories.

Good luck!
 
Old 01-04-2006, 03:30 PM   #3
TexLinux
LQ Newbie
 
Registered: Jan 2006
Location: Finland
Distribution: Slackware 10.2
Posts: 8

Original Poster
Rep: Reputation: 0
Hi!

Thank you for your kind tip, Slum. Unfortunately it just replied:"not a valid block device".

I have two SATA hard drives as sda and sdb and my flash disk usb memory stick is sdc1
and my mp3 player is sdd1. I tried sde1 for my digital camera but without any luck.
Weird... my memory wonder stick works great and so deos my mp3 player. It's easy to
access them but not my camera.

I even have a scanner attached to usb and it works great too. The driver for a scanner
is not quite made for my Canon N650U but it still works (The default for a Mustek scanner).
My Canon scanner makes weird noise just before scanning but the pictures look good.
 
Old 01-04-2006, 04:05 PM   #4
shilo
Senior Member
 
Registered: Nov 2002
Location: Stockton, CA
Distribution: Slackware 11 - kernel 2.6.19.1 - Dropline Gnome 2.16.2
Posts: 1,132

Rep: Reputation: 50
Some cameras are USB Mass Storage devices. Others are PTP devices. You can't mount a PTP device like a USB Mass Storage device. Just doesn't work.

First up, though, you should see what is going on (maybe your camera IS a USB Mass Storage device).

Guessing device names is not the best way to go about things. Instead, try (as root):

Code:
tail -f /var/log/syslog /var/log/dmesg /var/log/messages
Ignore all the text that just scrolled by. The screen is now just sitting there. Now, watch the screen as you connect your camera (you may need to put the camera in "playback mode"). This should give you an indication as to whether or not your camera is a USB Mass Storage device. If so, it will also kindly tell you the device name (no guessing).

Now if that didn't turn out nicely, you most likely have a PTP camera. Check out gphoto. Search this forum and there are some guides, I believe.
 
Old 01-04-2006, 11:51 PM   #5
TexLinux
LQ Newbie
 
Registered: Jan 2006
Location: Finland
Distribution: Slackware 10.2
Posts: 8

Original Poster
Rep: Reputation: 0
Hi!

Thank You for Your clever tip! My camera sure is a USB mass storage
device. There is no active driver available for it. Maybe I should look
for an appropriate driver on the Internet (HP site, Linux sites, etc...).

Somethings are sometimes too easy to look for...
 
Old 01-05-2006, 12:35 AM   #6
shilo
Senior Member
 
Registered: Nov 2002
Location: Stockton, CA
Distribution: Slackware 11 - kernel 2.6.19.1 - Dropline Gnome 2.16.2
Posts: 1,132

Rep: Reputation: 50
Quote:
Originally Posted by TexLinux
My camera sure is a USB mass storage
device. There is no active driver available for it.
If the camera is recognized as a USB Mass Storage device, as you note, then the drivers are already on the kernel (it would be the same driver that allows you to use your MP3 player and memory stick). If the camera is a USB Mass Storage Device, it is, in essence, a fancy memory stick.

Might be a good idea to post the output you received, since it should include a device name. Once you have the device name, you simply need to mount the device with a command based on the one given by Slum.

As a matter of fact, Slum's post is dead on for a USB Mass Storage Device camera. I only made my post on the off chance that you were using a PTP camera (the last two cameras I have used were both PTP and not USB Mass Storage). It took me awhile to figure things out, since everyone seemed to suggest that all was needed was to mount the camera.
 
Old 01-05-2006, 06:00 PM   #7
Slum
Member
 
Registered: May 2005
Location: Rhode Island, USA
Distribution: Slackware w/ bleeding edge kernel.
Posts: 37

Rep: Reputation: 15
Quote:
Originally Posted by shilo
As a matter of fact, Slum's post is dead on for a USB Mass Storage Device camera. I only made my post on the off chance that you were using a PTP camera (the last two cameras I have used were both PTP and not USB Mass Storage). It took me awhile to figure things out, since everyone seemed to suggest that all was needed was to mount the camera.
Could modify mine a little bit, obviously /dev/sda1 is in use if he/she is using two other usb storage devices depending on the order that hotplug detects the ports.

Thanks for the compliment.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Digital Camera Photosmart M305 on Redhat 9.0 m0t3x Linux - Hardware 0 12-19-2004 11:51 AM
HP Photosmart 635 Digital camera on MDK 10? Guitarist88 Linux - Hardware 0 05-26-2004 05:25 PM
HP Photosmart 435 Digital Camera JaseP Linux - Hardware 7 02-02-2004 12:58 PM
HP photosmart 433 digital camera on RedHat9? mrevilskier Linux - General 2 11-29-2003 08:11 PM
Digital Camera - HP Photosmart 720 skora Linux - Software 3 08-30-2003 10:28 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 08:50 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration