Results 1 to 7 of 7
I have a digital camera and want to get photos from it on my PC through a USB cable.I'm running knoppix 3.8.1,and the USB viewer detects the camera,but how do ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 05-05-2005 #1Just Joined!
- Join Date
- Apr 2005
- Posts
- 54
Getting photos from a digital camera on Knoppix
I have a digital camera and want to get photos from it on my PC through a USB cable.I'm running knoppix 3.8.1,and the USB viewer detects the camera,but how do I get to the photos?
- 05-05-2005 #2Just Joined!
- Join Date
- Apr 2005
- Posts
- 54
noone knows?
(must...resist...starting...windows-with-camera-drivers...must...resist...)
- 05-05-2005 #3Just Joined!
- Join Date
- Apr 2005
- Posts
- 40
You have to compile kernel with usb and mass storage support.
- 05-05-2005 #4Just Joined!
- Join Date
- Apr 2005
- Posts
- 54
can it be done from liveCD?
and if it can,how?(yes I know I'm a noob...have mercy)
- 05-05-2005 #5Just Joined!
- Join Date
- Apr 2005
- Posts
- 40
Damn, sorry, I didn't notice you're running knoppix... You won't be able to recompile kernel :(
You shoud be able to mount you cam with:
What camera you want to use?Code:mount -t vfat /device /mount/point
- 05-06-2005 #6
The most of usb-cards/cameras could be mounted as SCSI-devices.
FAT32 is usually used by cameras.
Soand try this:Code:mkdir /mnt/cam
If you have some other SCSI-devices it will not be sda, but maybe sdb, sbc, etc (see it in /dev/fdisk -l output)Code:mount -t vfat /dev/sda1 /mnt/cam
- 05-06-2005 #7
For the record, once you've mounted the device, you can go into the /mnt/cam directory and see everything there.
The Linux filesystem is like a tree; to add new things to the tree, we mount devices into specified directories. This makes that directory point into this device.
So you will be mounting your camera to the /mnt/cam directory.


Reply With Quote
