OS + Linux Dell Camera Driver SP2208WFP
2022/6/24 5:20:51
本文主要是介绍OS + Linux Dell Camera Driver SP2208WFP,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
创新 Monitor Webcam (SP2208WFP) 1.00.08.0720 摄像头驱动
linux下安装dell SP2208WFP显示器摄像头驱动
https://blog.csdn.net/iteye_20954/article/details/81618746
dell SP2208WFP显示器官方没有linux下的摄像头驱动,在网上找了找,发现一个办法可以解决,记录一下!
我现在的系统是ubuntu8.04,安装步骤如下:
1. install prereqs if you don't have them
sudo aptitude install subversion build-essential
2. back up current module, just in case
sudo cp /lib/modules/2.6.24-16-generic/ubuntu/media/usbvideo/uvcvideo.ko /lib/modules/2.6.24-16-generic/ubuntu/media/usbvideo/uvcvideo.ko.bak
[DiabolusItalicus' note: repeat the above command for all the kernel versions you have installed or intend to use the webcam with.
Just remember to replace "2.6.24.16" with your versions.
I have kernels 2.6.24.18 and 2.6.24.19 installed, so I repeated the above command twice adjusting kernel version as required.]
3. Check out latest source code
svn checkout svn://svn.berlios.de/linux-uvc/linux-uvc/trunk
4. go to the 'trunk' directory
cd trunk
5. Edit Makefile
nano Makefile
(or use gedit or whatever you like)
6. Change the line starting with INSTALL_MOD_DIR to this:
INSTALL_MOD_DIR := /lib/modules/$(KERNEL_VERSION)/ubuntu/media/usbvideo
7. Install it
make sudo make install sudo modprobe uvcvideo
8. Reboot (you could also unload the old module and load the new one, but I didn't remember the command off the top of my head, and I'm lazy)
end
这篇关于OS + Linux Dell Camera Driver SP2208WFP的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-12如何创建可引导的 ESXi USB 安装介质 (macOS, Linux, Windows)
- 2024-11-08linux的 vi编辑器中搜索关键字有哪些常用的命令和技巧?-icode9专业技术文章分享
- 2024-11-08在 Linux 的 vi 或 vim 编辑器中什么命令可以直接跳到文件的结尾?-icode9专业技术文章分享
- 2024-10-22原生鸿蒙操作系统HarmonyOS NEXT(HarmonyOS 5)正式发布
- 2024-10-18操作系统入门教程:新手必看的基本操作指南
- 2024-10-18初学者必看:操作系统入门全攻略
- 2024-10-17操作系统入门教程:轻松掌握操作系统基础知识
- 2024-09-11Linux部署Scrapy学习:入门级指南
- 2024-09-11Linux部署Scrapy:入门级指南
- 2024-08-21【Linux】分区向左扩容的方法