Eu estava tendo o mesmo problema e a solução em link (EDIT: atualização do url) me ajudou.
$ fuser /dev/video0
/dev/video0: 1871m
$ ps axl | grep 1871
$ kill -9 1871
Eu tentei executar o seguinte:
$ vlc -I dummy v4l2:///dev/video0 --video-filter scene --no-audio --scene-path webcam.png --scene-prefix image_prefix --scene-format png vlc://quit --run-time=1
VLC media player 2.0.7 Twoflower (revision 2.0.6-54-g7dd7e4d)
[0x1f4a1c8] dummy interface: using the dummy interface module...
[0x7fc19c001238] v4l2 demux error: VIDIOC_STREAMON failed
libv4l2: error setting pixformat: Device or resource busy
libv4l2: error setting pixformat: Device or resource busy
libv4l2: error setting pixformat: Device or resource busy
libv4l2: error setting pixformat: Device or resource busy
libv4l2: error setting pixformat: Device or resource busy
libv4l2: error setting pixformat: Device or resource busy
libv4l2: error setting pixformat: Device or resource busy
libv4l2: error setting pixformat: Device or resource busy
libv4l2: error setting pixformat: Device or resource busy
libv4l2: error setting pixformat: Device or resource busy
[0x7fc19c007f18] v4l2 access error: cannot set input 0: Device or resource busy
[0x7fc19c007f18] v4l2 access error: cannot set input 0: Device or resource busy
[0x7fc1a4000b28] main input error: open of 'v4l2:///dev/video0' failed
[0x7fc1a4000b28] main input error: Your input can't be opened
[0x7fc1a4000b28] main input error: VLC is unable to open the MRL 'v4l2:///dev/video0'. Check the log for details.
[0x7fc19c007cc8] idummy demux: command 'quit'
Então, estou assumindo que há um programa acessando minha webcam, o que é trabalhoso, pois sua luz está apagada e lsof | grep /dev/video
não retorna nada. Existe outra maneira adequada de verificar quais processos estão usando minha webcam? Ou é o problema de uma natureza totalmente diferente?
Eu estava tendo o mesmo problema e a solução em link (EDIT: atualização do url) me ajudou.
$ fuser /dev/video0
/dev/video0: 1871m
$ ps axl | grep 1871
$ kill -9 1871
Por algum motivo / dev / video * da resposta de Tsan-Kuang não funcionou para mim. Aqui está outra maneira de acessar seu dispositivo: ls /dev/input/by-id/
. Por exemplo:
$ fuser /dev/input/by-id/usb-Microsoft_Microsoft®_LifeCam_HD-5000-event-if00
Este comando retornará todos os processos que estão usando o dispositivo:
$ lsof /dev/video0
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
cheese 31526 kirill mem CHR 81,0 18321 /dev/video0
cheese 31526 kirill 23u CHR 81,0 0t0 18321 /dev/video0
Tendo o PID, você pode matar o processo, neste exemplo:
$ kill 31526