iConcepts USB Digital Camera

This is a discussion about iConcepts USB Digital Camera in the Linux Hardware category; I'm running Mandrake 9. 1 (kernel 2. 4. 21-mdk13) and have recently bought a 'toy' digital camera. The packaging calls it an 'iConcepts Web Cam 2 Go Kit' but I think its either an SQ702 USB (this main be an Asian name) or an iConcepts 69052.

Linux Hardware 765 This topic was started by , . Last reply by ,


data/avatar/default/avatar05.webp

4 Posts
Location -
Joined 2003-11-01
I'm running Mandrake 9.1 (kernel 2.4.21-mdk13) and have recently bought a 'toy' digital camera. The packaging calls it an 'iConcepts Web Cam 2 Go Kit' but I think its either an SQ702 USB (this main be an Asian name) or an iConcepts 69052.
 
I plugged it in a GTKam popped up but couldn't find a driver for it. I looked on the Internet but couldn't find a driver there either.
 
But I did find some related posts which said about mounting the device /dev/sda to somewhere appropriate.
 
I looked in /dev but there wasn't anything there. The only things in /dev/scsi were the cdrom and cdwriter.
 
I checked my kernel setup and things like USB mass storage are there.
 
Any Ideas?
 
Cheers.

Participate in our website and join the conversation

You already have an account on our website? To log in, use the link provided below.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This subject has been archived. New comments and votes cannot be submitted.
Nov 1
Created
Nov 7
Last Response
0
Likes
2 minutes
Read Time
User User
Users

Responses to this topic


data/avatar/default/avatar02.webp

169 Posts
Location -
Joined 2003-03-02
try mounting it
first
Code:
mkdir /mnt/camera
then
Code:
mount -t vfat /dev/sda1 /mnt/camera

data/avatar/default/avatar05.webp

4 Posts
Location -
Joined 2003-11-01
OP
I don't seem to have a device called /dev/sda1 or anything similar.
 
But I think I've got all the right modules in my kernel.

data/avatar/default/avatar02.webp

169 Posts
Location -
Joined 2003-03-02
Quote:I don't seem to have a device called /dev/sda1 or anything similar.

But I think I've got all the right modules in my kernel.

Is that the error you are getting when you try to mount or have you simply looked in your /dev/ directory.

data/avatar/default/avatar05.webp

4 Posts
Location -
Joined 2003-11-01
OP
Yes, if I issue:

Code:
# mount /dev/sda1 /mnt/other
it says:

Code:
mount: special device /dav/sda1 does not exist
and I've looked in /dev and its definately not there.
 
Actually, I haven't got an entry in fstab for it. Should there be?

data/avatar/default/avatar02.webp

169 Posts
Location -
Joined 2003-03-02
No there is no need to have a line in /etc/fstab unless you want it to mount at boot.
try
Code:
modprobe usb-storage
to see what modules you have loaded
Code:
lsmod
once you plug in and switch on your camera devfs will automatically create /dev/sda and /dev/sda1 and if you where to plug in a second camera or thumb drive it would create /dev/sdb and /dev/sdb1....
If modprobing usb-storage worked for you all you need to do so that it loads this module at boot is add it to your /etc/modules file...

Code:
echo usb-storage >> /etc/modules