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

Notices


Reply
  Search this Thread
Old 07-28-2010, 04:11 AM   #1
theluli
LQ Newbie
 
Registered: Jul 2010
Posts: 10

Rep: Reputation: 0
Web Camera on Ubuntu


Dear all,

l am new user to Linux Ubuntu , and at the moment everything is going fine except webcamer , problem is with a picture so far the voice is coming , but no picture , l had read most of the advise here but stile the picture is not coming

Please advise

Bus 005 Device 004: ID 093a:2620 Pixart Imaging, Inc.
Bus 005 Device 002: ID 046d:c03e Logitech, Inc. Premium Optical Wheel Mouse
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 006: ID 058f:6362 Alcor Micro Corp. Hi-Speed 21-in-1 Flash Card Reader/Writer (Internal/External)
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 
Old 07-28-2010, 06:49 AM   #2
Tuttle
Senior Member
 
Registered: Jul 2003
Location: Wellington, NZ
Distribution: mainly slackware
Posts: 1,291

Rep: Reputation: 52
See "Linux HCL" on the right, is your camera there?
 
Old 07-28-2010, 06:52 AM   #3
theluli
LQ Newbie
 
Registered: Jul 2010
Posts: 10

Original Poster
Rep: Reputation: 0
you mean this ? yes this is my camera
Bus 005 Device 004: ID 093a:2620 Pixart Imaging, Inc.
 
Old 07-28-2010, 06:55 AM   #4
theluli
LQ Newbie
 
Registered: Jul 2010
Posts: 10

Original Poster
Rep: Reputation: 0
Also is showing that my camera is connected , for examp, l am openin skype , picture of camera is there , but when l try to testit is not workin
 
Old 07-28-2010, 07:59 AM   #5
Tuttle
Senior Member
 
Registered: Jul 2003
Location: Wellington, NZ
Distribution: mainly slackware
Posts: 1,291

Rep: Reputation: 52
It's supported by the gspca driver

Post:
Code:
sudo lsmod | grep gspca
If you get:
Code:
gspca_pac7311
Try switching to:
Code:
gspca_pac7302
using:
Code:
sudo rmmod gspca_pac7311

sudo modprobe gspca_pac7302
Or vice-versa
 
Old 07-28-2010, 10:47 AM   #6
theluli
LQ Newbie
 
Registered: Jul 2010
Posts: 10

Original Poster
Rep: Reputation: 0
hi

l tried , here is the results

gspca_pac7311 8986 0
gspca_main 21199 1 gspca_pac7311
videodev 34361 1 gspca_main
lulzim@lulzim-desktop:~$ sudo rmmod gspca_pac7311
lulzim@lulzim-desktop:~$ sudo modprobe gspca_pac7302
FATAL: Module gspca_pac7302 not found.
lulzim@lulzim-desktop:~$ sudo rmmod gspca_pac7311
ERROR: Module gspca_pac7311 does not exist in /proc/modules
 
Old 07-29-2010, 01:38 AM   #7
Tuttle
Senior Member
 
Registered: Jul 2003
Location: Wellington, NZ
Distribution: mainly slackware
Posts: 1,291

Rep: Reputation: 52
I'm not sure what's happening, seems like pac_7302 is not compiled into your kernel, it might be obsolete.

You should be able to modprobe the gspca_7311 driver out of, and back into your kernel whenever you want:
Code:
sudo rmmod gspca_pac7311

sudo modprobe gspca_pac7311
you can pass module arguments to the module through /etc/modprobe.d/[module-name]

Here is the original gspca website:

http://mxhaard.free.fr/spca5xx.html

Your camera added to the Linux kernel:

http://www.mail-archive.com/linuxtv-.../msg02335.html
 
Old 07-29-2010, 07:33 AM   #8
theluli
LQ Newbie
 
Registered: Jul 2010
Posts: 10

Original Poster
Rep: Reputation: 0
l think there is problem with ubuntu , because l am getting some errors durin startup
l will reinstall again

also l would like to ask you something else ?
How can l open iso images without cd or without copying them to cd

for examp in windows there is a software make iso ?
 
Old 07-29-2010, 08:29 PM   #9
Tuttle
Senior Member
 
Registered: Jul 2003
Location: Wellington, NZ
Distribution: mainly slackware
Posts: 1,291

Rep: Reputation: 52
Quote:
Originally Posted by theluli View Post
l think there is problem with ubuntu , because l am getting some errors durin startup
l will reinstall again

also l would like to ask you something else ?
How can l open iso images without cd or without copying them to cd

for examp in windows there is a software make iso ?
You can mount a *.iso image using the mount command:
Code:
sudo mount /path/to/image-name.iso -o loop /path/to/[mountpoint]
[mountpoint] can be any unused directory in your system, eg. /mnt/iso

You can make an iso image from directories and files on your computer using several programs, but all these programs control command line programs like cdrecord. If you enjoy the command line stuff then try:
Code:
man [command name]
eg:
Code:
man cdrecord
man mount
man man
The last command is the man page for the man command!
 
Old 08-10-2010, 12:23 PM   #10
theluli
LQ Newbie
 
Registered: Jul 2010
Posts: 10

Original Poster
Rep: Reputation: 0
Hi

finally my webcamera is working , also working in skype
but there is a one small problem , always l have to give this command int terminal > export LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so < and than l have to type skype
in other side l have my skype installed in at application but whith that one camera is not working

you have any idea what is the problem

For unmount l tried all commands but l am getting error

see below

sudo mount /path/to/image-name.iso -o loop /path/to/[mountpoint]
/path/to/image-name.iso: No such file or directory
man [command name]
No manual entry for [command
No manual entry for name]
 
Old 08-12-2010, 07:24 AM   #11
Tuttle
Senior Member
 
Registered: Jul 2003
Location: Wellington, NZ
Distribution: mainly slackware
Posts: 1,291

Rep: Reputation: 52
Quote:
Originally Posted by theluli View Post
Hi

finally my webcamera is working , also working in skype
but there is a one small problem , always l have to give this command int terminal > export LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so < and than l have to type skype
in other side l have my skype installed in at application but whith that one camera is not working

you have any idea what is the problem

For unmount l tried all commands but l am getting error

see below

sudo mount /path/to/image-name.iso -o loop /path/to/[mountpoint]
/path/to/image-name.iso: No such file or directory
man [command name]
No manual entry for [command
No manual entry for name]
Ah! Simple mistakes:

Replace "/path/to/image-name.iso" with the path to your image.iso file
Replace "[command name]" with the command you want a manual page for... eg. "mount"
 
  


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
Which external web camera do you use? alaios Linux - Hardware 6 06-29-2010 09:40 AM
Create a web forward for a java based web camera using SSL Explorer timthecamel Linux - Newbie 0 09-01-2008 09:20 PM
web camera giraf Debian 1 08-28-2006 08:35 PM
Web Camera rntr Linux - Hardware 4 07-08-2006 01:43 AM
Web camera laasunde Linux - Software 2 01-19-2006 11:44 AM

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

All times are GMT -5. The time now is 08:33 PM.

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