Quote:
Originally posted by glock19
Does anyone know how to get a digital camera (Kodak DC280 Zoom) working in linux? I'm running Red Hat Linux 9.
|
I had the same problem with my digital camera. I had to treat it as a USB Mass storage device (by the way I have a Casio Exilim EX-Z3). Here is what I did:
modprobe usb-storage
Created a directory to mount the camera in
mkdir /mnt/camera
Found out what the device name is:
dmesg | less
There will be alot of output. Look for USB port entries and you will get the device name. My device was sdb1 (since you are running rh9 also it is probably the same so try to mount sdb1 before running this command)
Mount the device on the directory I created
mount /dev/sdb1 /mnt/camera