LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 12-27-2010, 09:39 PM   #1
daweefolk
Member
 
Registered: Sep 2009
Distribution: raspbian
Posts: 94

Rep: Reputation: 15
jwin webcams: supported under linux?


i recently got a jwin webcam and I'm wondering if it will work with linux. I'm sure there is a way it will, I just don't know what to do yet.
my kernel version: 2.6.27.7
What commands should I run to show more information?
 
Old 12-28-2010, 04:34 AM   #2
tredegar
LQ 5k Club
 
Registered: May 2003
Location: London, UK
Distribution: Fedora38
Posts: 6,147

Rep: Reputation: 435Reputation: 435Reputation: 435Reputation: 435Reputation: 435
Well, it might be working already. What happens when you plug it in and run the application cheese ?
If cheese doesn't see it, we need to know more about it: Unplug the cam. In a terminal lsusb.
Plug in the cam, then in a terminal lsusb again.
The addition to the output from this command, compared to the previous one, are the details of your webcam. Tell us what they are.

Another thing to try: Unplug your cam. Plug it back in. Type dmesg in a terminal, and post the last 20 lines here.
 
Old 07-19-2011, 01:02 AM   #3
Clue
LQ Newbie
 
Registered: Jul 2011
Distribution: Ubuntu 10.04 "Lucid Lynx"
Posts: 3

Rep: Reputation: Disabled
Sorry to bump this, but I have the same issue with Debian Lenny (I might upgrade to squeeze if it's warranted, but I'm not sweating it).

lsusb:
Code:
tux@beast:~/freeciv-2.2.7$ lsusb
Bus 001 Device 003: ID 093a:2620 Pixart Imaging, Inc. 
Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
tux@beast:~/freeciv-2.2.7$
dmesg:
Code:
[11508.392092] usb 1-2: new full speed USB device using ohci_hcd and address 3
[11508.596831] usb 1-2: configuration #1 chosen from 1 choice
[11508.685507] usb 1-2: New USB device found, idVendor=093a, idProduct=2620
[11508.685517] usb 1-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
 
Old 07-19-2011, 03:06 AM   #4
tredegar
LQ 5k Club
 
Registered: May 2003
Location: London, UK
Distribution: Fedora38
Posts: 6,147

Rep: Reputation: 435Reputation: 435Reputation: 435Reputation: 435Reputation: 435
It looks like this camera needs the gspca_pac7311 module:

Plug in the camera.
Code:
lsmod | grep pac7311
Is the module listed?
If so, fire up cheese:
Code:
cheese
If not, then load the module (as root)
Code:
modprobe gspca_pac7311
Try cheese again. Re-plug the camera, try cheese again.
 
Old 07-19-2011, 08:19 AM   #5
Clue
LQ Newbie
 
Registered: Jul 2011
Distribution: Ubuntu 10.04 "Lucid Lynx"
Posts: 3

Rep: Reputation: Disabled
Had no go. Here's dmesg again:
Code:
[ 7122.243018] Linux video capture interface: v2.00
[ 7122.272082] usbcore: registered new interface driver gspca
[ 7122.272094] gspca: gspca driver 01.00.20 registered
[ 7192.315338] usb 1-2: USB disconnect, address 2
[ 7192.896090] usb 1-2: new full speed USB device using ohci_hcd and address 3
[ 7193.101724] usb 1-2: configuration #1 chosen out of 1 choice
[ 7193.235563] usb 1-2: New USB device found, idVendor=093a, idProduct=2620
[ 7193.235572] usb 1-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
I used gspca-source, do I need a special kernel module? I tried Debian's binary with no luck.
 
Old 07-19-2011, 01:49 PM   #6
tredegar
LQ 5k Club
 
Registered: May 2003
Location: London, UK
Distribution: Fedora38
Posts: 6,147

Rep: Reputation: 435Reputation: 435Reputation: 435Reputation: 435Reputation: 435
Quote:
I used gspca-source, do I need a special kernel module?
It looks like you need the gspca_pac7311 module for your camera.

Quote:
I tried Debian's binary with no luck.
I have no idea what you mean. Which "Debian's binary" ?

If your version of debian doesn't provide it (the modprobe gspca_pac7311 will give you an error message if it does not exist) then you have two choices:

- Try a different distro which provides the module automatically. Maybe try a live CD of a current distribution. (Ubuntu 10.04 [kernel 2.6.32-33-generic] lists that module as available, but I do not have a camera like yours to test it out).

- Download the source code for gspca_pac7311 and compile it against your current kernel's source code (more stuff to download, but it's not that difficult, error messages will help you resolve dependencies). Then you can modprobe gspca_pac7311 to make it work.

Hope this helps.

Last edited by tredegar; 07-19-2011 at 01:52 PM.
 
Old 09-04-2011, 02:19 AM   #7
Clue
LQ Newbie
 
Registered: Jul 2011
Distribution: Ubuntu 10.04 "Lucid Lynx"
Posts: 3

Rep: Reputation: Disabled
With Ubuntu, kernel 2.6.32-21-generic, the webcam is recognized but I get no input from it from cheese.
 
Old 09-04-2011, 08:47 AM   #8
tredegar
LQ 5k Club
 
Registered: May 2003
Location: London, UK
Distribution: Fedora38
Posts: 6,147

Rep: Reputation: 435Reputation: 435Reputation: 435Reputation: 435Reputation: 435
What makes you think that it "is recognised"?
See the advice in post #4
 
Old 08-24-2014, 07:43 PM   #9
toosweetforme
LQ Newbie
 
Registered: Aug 2014
Posts: 1

Rep: Reputation: Disabled
Sorry to bump

I was able to plug the webcam in and get a response in Cheese, but my problem is that my feed (or stream, or whatever it is called) is upside down. I tried repositioning the camera but I can't get the camera to stay with it turned upside down. Is there any way to get the feed flipped so that it is showing the correct orientation?
 
Old 08-25-2014, 11:41 AM   #10
tredegar
LQ 5k Club
 
Registered: May 2003
Location: London, UK
Distribution: Fedora38
Posts: 6,147

Rep: Reputation: 435Reputation: 435Reputation: 435Reputation: 435Reputation: 435
Welcome to LQ!

This thread is very old, and you will get a better response if you start a new one with a sensible title.

Please include details of your cam as listed by the output of the lsusb command in a terminal, along with details of the version of linux you are running (Eg "Mint 16", "Debian Wheezy")
 
  


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
Running two USB webcams/Linux compatible IR sensitive webcams doctorelectron Linux - Hardware 1 06-07-2006 08:30 AM
Looking for Webcams that work with Linux damien31 Linux - Hardware 1 02-14-2006 01:30 PM
SuSE 9.3: Supported Webcams? mac57 SUSE / openSUSE 3 08-05-2005 04:09 PM
Do webcams work in linux? rrfish72 Linux - Hardware 3 12-11-2004 06:03 PM
linux and webcams: success? punt Linux - General 7 08-11-2001 12:28 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 04:06 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