我有一个USB摄像头: Novatel U740 (https://linux-hardware.org/index.php?id=usb:1410-1410),不幸的是它似乎无法工作(Ubuntu18.04,最新的一切)。
以下是我从lsusb
获得的信息:
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 007: ID 1410:1410 Novatel Wireless Merlin U740 (non-Vodafone)
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 003: ID 1ea7:0064
Bus 001 Device 002: ID 046d:c534 Logitech, Inc. Unifying Receiver
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
插入后的dmesg
:
[ 667.771452] usb 3-2: new high-speed USB device number 7 using xhci_hcd
[ 668.012445] usb 3-2: New USB device found, idVendor=1410, idProduct=1410, bcdDevice= 0.00
[ 668.012447] usb 3-2: New USB device strings: Mfr=2, Product=1, SerialNumber=0
[ 668.012449] usb 3-2: Product: USB 2.0 Camera
[ 668.012450] usb 3-2: Manufacturer: Sonix Technology Co., Ltd.
[ 668.021479] option 3-2:1.0: GSM modem (1-port) converter detected
[ 668.023851] option 3-2:1.1: GSM modem (1-port) converter detected
[ 668.025476] option 3-2:1.2: GSM modem (1-port) converter detected
[ 668.025536] option 3-2:1.3: GSM modem (1-port) converter detected
lsmod | grep video
uvcvideo 94208 0
videobuf2_vmalloc 20480 1 uvcvideo
videobuf2_memops 20480 1 videobuf2_vmalloc
videobuf2_v4l2 24576 1 uvcvideo
videobuf2_common 49152 2 videobuf2_v4l2,uvcvideo
videodev 208896 3 videobuf2_v4l2,uvcvideo,videobuf2_common
mc 53248 5 videodev,snd_usb_audio,videobuf2_v4l2,uvcvideo,videobuf2_common
ls /dev/video*
ls: cannot access '/dev/video*': No such file or directory
我转而使用专有的Nvidia驱动程序,但这并没有帮助(之后重新启动)。考虑到我的想法不多,有没有人对这个特别的摄像头或那个制造商的摄像头有类似的问题?
也许值得指出的是,同一个摄像头在我的笔记本上工作,安装了相同的发行版和内核。
发布于 2020-02-21 18:09:43
Ubuntu认为这是调制解调器。尝试黑名单 option
驱动程序。在本例中,uvcvideo
应在下一次引导时自动加载。
发布于 2020-05-19 03:22:53
只是跟进linuxbuild的答案..。
对于我在LinuxMint 18.3上也拥有的这台相机,我在/etc/modprobe.d/blacklist-modem.conf中添加了以下内容,在重新启动之后它就工作了:
blacklist usb_wwan
install usb_wwan /bin/false
很可能最后一行是唯一需要的,但我在“如何将驱动程序黑名单”的线程中找到了我的工作方式,这就是它工作的时候。
https://askubuntu.com/questions/1212050
复制相似问题