如何安装和加载与videodev等相关的mod?

如何安装和加载与videodev等相关的mod?

相同的硬件,在同一台电脑上安装了两个 debian-11.7,一个在 /dev/sda1 上,另一个在 /dev/ada2 上。

对于 /dev/sda1 上的 debian:

uname -a
Linux debian 5.10.0-22-amd64 #1 SMP Debian 5.10.178-3 (2023-04-22) x86_64 GNU/Linux
sudo dmesg | grep uvc
[   16.378883] uvcvideo: Found UVC 1.00 device Lenovo FHD Webcam Audio (17ef:4831)
[   16.397414] usbcore: registered new interface driver uvcvideo
ls  /dev/video*
/dev/video0  /dev/video1
lsmod | grep video
uvcvideo              118784  0
videobuf2_vmalloc      20480  1 uvcvideo
videobuf2_memops       20480  1 videobuf2_vmalloc
videobuf2_v4l2         36864  1 uvcvideo
videobuf2_common       65536  2 videobuf2_v4l2,uvcvideo
videodev              294912  3 videobuf2_v4l2,uvcvideo,videobuf2_common
mc                     61440  5 videodev,snd_usb_audio,videobuf2_v4l2,uvcvideo,videobuf2_common
usbcore               331776  6 xhci_hcd,snd_usb_audio,usbhid,snd_usbmidi_lib,uvcvideo,xhci_pci
usb_common             16384  3 xhci_hcd,usbcore,uvcvideo
video                  61440  0

我可以将 USB 摄像头与奶酪或其他视频软件一起使用。

对于 /dev/sda2 上的 debian:

uname -a
Linux debian 5.10.0-23-amd64 #1 SMP Debian 5.10.179-2 (2023-07-14) x86_64 GNU/Linux
sudo dmesg | grep uvc
#nothing in the output
ls  /dev/video*
#nothing in the output
lsmod | grep video
video                  61440  0

无法使用带有cheese的USB摄像头,如何在/dev/sda2的debian中安装和加载丢失的mod?

答案1

删除/dev/sda2中blacklist.conf中的blacklist行。

#previous
cat  /etc/modprobe.d/blacklist.conf
blacklist uvcvideo

删除行:blacklist uvcvideo。

相关内容