LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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 11-19-2016, 08:27 AM   #1
steamer
LQ Newbie
 
Registered: Aug 2014
Posts: 28

Rep: Reputation: Disabled
usb camera


Hi Has anyone had success with usb inspection camera out "out of the box"
I recently bought a cheapo to use with my laptop thinking cheese would be able to handle it, sadly not. lsusb finds it as bus 001 device ID 090c:037 silicon motion,inc-Taiwan .
It would be really handy to use on a building project but thers no way I am going back to Windows 7,8,or10
Steamer
 
Old 11-19-2016, 08:56 AM   #2
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
What is the correct USB ID of this camera? Did you visit this page: https://help.ubuntu.com/community/Webcam
 
Old 11-20-2016, 09:45 AM   #3
steamer
LQ Newbie
 
Registered: Aug 2014
Posts: 28

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Emerson View Post
What is the correct USB ID of this camera? Did you visit this page: https://help.ubuntu.com/community/Webcam
Many Thanks Emerson The site refers to an ov51x driver ,can this be used safely with Mint 17.3 & is there a way to install it automatically .
Steamer
 
Old 11-20-2016, 09:50 AM   #4
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
Quote:
Originally Posted by Emerson View Post
What is the correct USB ID of this camera?
What is the correct USB ID of this camera?
 
Old 11-20-2016, 10:08 AM   #5
steamer
LQ Newbie
 
Registered: Aug 2014
Posts: 28

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Emerson View Post
What is the correct USB ID of this camera?
Not exactly sure, the only description I have found is what lsusb finds as in my first posting
 
Old 11-20-2016, 10:34 AM   #6
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
Your first posting has incorrect USB ID.
 
Old 11-20-2016, 10:47 AM   #7
steamer
LQ Newbie
 
Registered: Aug 2014
Posts: 28

Original Poster
Rep: Reputation: Disabled
OK will plug the camera in another pc & check it out ,my typing skill is non existant
 
Old 11-20-2016, 10:58 AM   #8
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
You run lsusb in a terminal window and copy and paste relevant lines. https://www.cyberciti.biz/faq/linux-...-mouse-button/
 
Old 11-20-2016, 11:58 AM   #9
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
Does guvcview do anything for you? A lot of devices have built in cameras these days, so it may not be the default camera, which can be problematic. Where "uvc" mean usb video camera (or something like that). Various other CLI tools like v4l-info, v4l2-ctl, uvcdynctrl, and such to view and change settings and other things.

$ mpv --ao=pulse --vo=opengl --demuxer-lavf-format=video4linux2 /dev/video0

Adjust according to your actual needs. Using guvcview is probably the easier way to view and change settings that you have control over. But a lot of that is scriptable with some of the previously mentioned CLI options. Additional devices will have names like /dev/video1 /dev/video2 and such.

$ ls /dev/video*

Also make sure that your user is in the video group.

$ groups
$ id

All of which assumes a working driver, but many usb cameras are standardized these days and usable.

# modprobe uvcvideo
$ lsmod | grep -i uvc
 
Old 11-20-2016, 12:27 PM   #10
steamer
LQ Newbie
 
Registered: Aug 2014
Posts: 28

Original Poster
Rep: Reputation: Disabled
Here is the result from lsusb Bus 003 Device 002: ID 090c:037c Silicon Motion, Inc. Taiwan (formerly Feiya Technology Corp.) 300k Pixel Camera
Is this what you mean?
 
Old 11-20-2016, 12:49 PM   #11
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
Yes, 090c:037c works with uvcvideo driver, is it loaded?
 
Old 11-20-2016, 12:59 PM   #12
steamer
LQ Newbie
 
Registered: Aug 2014
Posts: 28

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Shadow_7 View Post
Does guvcview do anything for you? A lot of devices have built in cameras these days, so it may not be the default camera, which can be problematic. Where "uvc" mean usb video camera (or something like that). Various other CLI tools like v4l-info, v4l2-ctl, uvcdynctrl, and such to view and change settings and other things.

$ mpv --ao=pulse --vo=opengl --demuxer-lavf-format=video4linux2 /dev/video0

Adjust according to your actual needs. Using guvcview is probably the easier way to view and change settings that you have control over. But a lot of that is scriptable with some of the previously mentioned CLI options. Additional devices will have names like /dev/video1 /dev/video2 and such.

$ ls /dev/video*

Also make sure that your user is in the video group.

$ groups
$ id

All of which assumes a working driver, but many usb cameras are standardized these days and usable.

# modprobe uvcvideo
$ lsmod | grep -i uvc
I have tried an ordinary webcam & cheese finds it straight away & the probe camera works on w7
 
Old 11-20-2016, 01:12 PM   #13
steamer
LQ Newbie
 
Registered: Aug 2014
Posts: 28

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Emerson View Post
Yes, 090c:037c works with uvcvideo driver, is it loaded?
How do I see if its loaded ? if it is not how do I find it & load
 
Old 11-20-2016, 02:11 PM   #14
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Quote:
Originally Posted by steamer View Post
How do I see if its loaded ?
Hi...

With your camera plugged in, please open a terminal and post the results of...

Code:
lsmod
Regards...
 
Old 11-20-2016, 02:11 PM   #15
steamer
LQ Newbie
 
Registered: Aug 2014
Posts: 28

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by steamer View Post
How do I see if its loaded ? if it is not how do I find it & load
Have looked in driver manager ,3 drivers present nvidia 304 used 173present also nouveau,
 
  


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
Usb camera... ramesh6056 Linux - Software 8 12-07-2007 06:54 AM
USB Logitech STX Camera | sytem startup camera active problem delta function Slackware 0 08-06-2006 04:23 PM
usb camera 2.6.9 Ipolit Debian 4 03-24-2005 10:02 PM
help with usb camera ? synapse Slackware 2 03-19-2004 03:00 PM
USB camera zokik Linux - Hardware 10 05-02-2003 02:07 PM

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

All times are GMT -5. The time now is 10:21 AM.

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