安装 Microsoft VX1000 网络摄像头

3 webcam drivers

我找到了一个教程,有人说它有效;这是我遵循的说明。

我在我的系统上以 root 身份打开了一个 shell 并启动了以下内容:

wget http://linuxtv.org/hg/v4l-dvb/archive/tip.tar.gz
tar zxvf tip.tar.gz
cd v4l... (whatever the newly created directory name is)
make all
sudo make install
Run Code Online (Sandbox Code Playgroud)

然后我编辑/etc/modprobe.d/blacklist-custom并添加了blacklist sn9c102.

重新启动后,我启动了sudo gstreamer-properties.

但是当我输入tar zxvf tip.tar.gz它时显示:

tar: You may not specify more than one `-Acdtrux' or `--test-label' option
Try `tar --help' or `tar --usage' for more information.
Run Code Online (Sandbox Code Playgroud)

为什么?我怎样才能做到这一点?

提前致谢。

Lek*_*eyn 5

您应该不需要手动安装驱动程序。即使在我的 Kubuntu 10.04 Lucid 上,MS Lifecam VX-1000 网络摄像头也能自动识别。

连接 USB 设备后,内核日志中会显示以下消息:

usb 3-2: new full speed USB device using uhci_hcd and address 2
usb 3-2: configuration #1 chosen from 1 choice
Linux video capture interface: v2.00
gspca: main v2.7.0 registered
gspca: probing 045e:00f7
sonixj: Sonix chip id: 11
gspca: probe ok
gspca: probing 045e:00f7
gspca: probing 045e:00f7
usbcore: registered new interface driver sonixj
sonixj: registered
usbcore: registered new interface driver snd-usb-audio
Run Code Online (Sandbox Code Playgroud)

模块相关说明:

  • gspca_main: GSPCA USB 摄像头驱动
  • gspca_sonixj: GSPCA/SONIX JPEG USB 相机驱动程序

我在 VLC 播放器中使用带有Video for Linux 2开放式捕获设备( Ctrl+ C)来验证相机是否正常工作。