Instalando a webcam Microsoft VX1000

1

Eu encontrei um tutorial com pessoas dizendo que funciona; aqui estão as instruções que eu segui.

Eu abri um shell como root no meu sistema e lancei o seguinte:

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

Em seguida, editei /etc/modprobe.d/blacklist-custom e adicionei blacklist sn9c102 .

Após a reinicialização, lancei o sudo gstreamer-properties .

No entanto, quando digito tar zxvf tip.tar.gz , é exibido:

tar: You may not specify more than one '-Acdtrux' or '--test-label' option
Try 'tar --help' or 'tar --usage' for more information.

Por quê? Como posso fazer isso?

Obrigado antecipadamente.

    
por Agmenor 15.02.2011 / 21:34

2 respostas

3

Você não deve precisar instalar os drivers manualmente. Mesmo no meu Kubuntu 10.04 Lucid, a webcam MS Lifecam VX-1000 é reconhecida automaticamente.

Após conectar o dispositivo USB, as próximas mensagens aparecem no log do kernel:

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

Descrições relevantes para os módulos:

  • gspca_main : Driver da Câmera USB GSPCA
  • gspca_sonixj : Driver da Câmera USB JPEG GSPCA / SONIX

Eu usei o Dispositivo de captura aberto ( Ctrl + C ) com Video for Linux 2 no VLC jogador para verificar se a câmera funciona.

    
por Lekensteyn 02.09.2011 / 15:25
1

Altere o comando tar zxvf tip.tar.gz para tar -zxvf tip.tar.gz

-

O comando tar

Usage: tar [OPTION]… [FILE]…

Let us check the option used in this example

-c, –create               create a new archive
-z, –gzip, –ungzip        filter the archive through gzip
-v, –verbose              verbosely list files processed
-f, –file=ARCHIVE         use archive file or device ARCHIVE
    
por Ilias 17.02.2011 / 11:26