Linux Webcam and TV【Linux 摄像头 和 电视】
HowTo WebCam On Linux
Five fun ways to use a Linux webcam
http://www.linux.com/archive/articles/126186
The Webcam HOWTO
http://tldp.org/HOWTO/html_single/Webcam-HOWTO/
WebCam under Linux
http://www.seismo.ethz.ch/linux/webcam.html
‘Webcams in Linux, Part 1
http://www.linuxplanet.com/linuxplanet/tutorials/6463/1/
http://www.linuxdiyf.com/bbs/thread-69684-1-1.html
livna上已有摄像头驱动了,
“yum -y install gspca"
用Fedora7以来,摄像头一直闲置着。今天给它装了驱动,把它利用起来。
首先打开一个终端窗口输入:lsusb 查看摄像头是否被识别,我的是中星微301PL芯片被识别为301b,如图
到http://mxhaard.free.fr下载驱动gspcav1-20070508.tar.gz,这网站(网站上好像是有摄像头支持列表的)今天一直没能连接上。所以会在附件里添加该驱动(我以前下载的),这个驱动是给2.6.11以上内核用的。
终端窗口输入:yum install kernel-devel kernel-headers 如果已经安装了就不需要这一步了。
终端窗口输入:cd /home/download 这是我的下载文件存放处,各位根据自己的下载文件存放处修改
终端窗口输入:tar xvfz gspcav1-20070508.tar.gz
终端窗口输入:cd /gspcav1-20070508
终端窗口输入:make
终端窗口输入:make install
驱动就安装好了(注:我在安装系统的时候,开发库就是完全安装的,系统安装好以后又YUM添加了好多包,如gcc,rpm,make等相关包,所以安装摄像头驱动是没碰到错误的)。
还有摄像头应用程序spcaview,需要SDL库
终端窗口输入:yum install SDL SDL-devel 如果已经安装了就不需要这一步了
附件里给的是已经编译好的spcaview,解压后直接可以用。
HOWTO Install a webcam
http://en.gentoo-wiki.com/wiki/HOWTO_Install_a_webcam
Webcam
from Gentoo Linux Wiki
(Redirected from HOWTO Install a webcam)
Jump to: navigation, search
Webcams are live video capturing devices. They are usually connected using USB. If it is an ethernet or wifi webcam, you won't need any drivers, but just a bro
相关文档:
The Intelligent Input/Output (I2O) architecture allows hardware drivers to be split into two parts: an operating system specific module called the OSM and an hardware specific module called the HDM. The OSM can talk to a whole range of HDM's, and ideally the HDM's are not OS dependent. This allows f ......
简单实例说明待补充,实例源码可在此链接下载http://d.download.csdn.net/down/2389895/sanlinux
jniNative.cpp
#include "jniNative.h"
#include "mymain.h"
#include <stdio.h>
JNIEXPORT void JNICALL Java_HelloWorld_print(JNIEnv *env, jobject arg, jstring instring)
{
&nb ......
由于 Linux 良好的用户权限管理体系,病毒往往是 Linux 系统管理员最后才需要考虑的问题。以往,Linux 上的杀毒软件主要是为企业的邮件和文件服务器所设计的。如今,随着 Linux 桌面用户数量的增长,桌面用户在受益于 Linux 系统对病毒较强的天然免疫力的同时,也需要杀毒软件清理从网络或U盘带来的WIndows病毒。尽管那些 ......
文章出处:http://doc.linuxpk.com/52964.html
使用控制台登录后,在shell提示符下面操作时会用到大量的Tab来自动补全,这个时候机器的蜂鸣器就会嘟嘟吡吡不停,这个嘟嘟吡吡的声音可以使用setterm命令来设置它的长短。
setterm -blength 0
  ......
http://blog.csdn.net/linucos/archive/2010/01/22/5223615.aspx
Linux
移植开发
准备工作:
准备
交叉编译工具链:这里我们选择DENX软件工程提供的ELDK交叉编译环境,参考地址:http://ftp.denx.de/pub/eldk/4.2/
,
我们使用其中的一套工具。准备工作步骤如下:
1. 建立工作文件夹NewMsg2410,并建立子目录sources ......