I was using facebook messenger, and When I finished my call, the web cam stilled working.I have an integrated camera in my laptop HP 630. Is there a way to turn it off ? Thanks.
-
It might just be glitched. Have you tried restarting? – wjandrea Mar 25 '17 at 13:52
-
@NeoTheThird shameless plug, but this most probably readily available and thus cheaper: http://askubuntu.com/a/779909/75166 – MadMike Mar 27 '17 at 13:15
-
the problem is solved, but I am using it :xD – Amine Soumiaa Mar 27 '17 at 13:35
4 Answers
Thank you guys, the problem is gone.
- I used the command : lsof | grep video0 to find the software using my webcam. It was FireFox.
- I just restarted FireFox, and then the webcam turned off.

- 321
-
5Just run
lsof /dev/video0
. That's often much faster than running lsof on all files – smac89 Jun 02 '20 at 04:58
If the webcam behaves weirdly, not automatically turning off for example, you can:
To disable the webcam run:
sudo modprobe -r uvcvideo
It removes the module from the Linux Kernel.
To re-enable the webcam you can either restart or run:
sudo modprobe -a uvcvideo
Reinserts the module.

- 3,448
sudo rmmod -f uvcvideo
(to kill laptop camera)sudo modprobe -r uvcvideo
(to restart the video module)sudo modprobe uvcvideo
(to restart the laptop camera)sudo modprobe -a uvcvideo
(can be used while skipping steps 2&3 to restart the camera directly)

- 19,615
- 55
- 79
- 83

- 31
- 1
If you know the application name, you can use the following to get the process ID:
ps -fA | grep application_name
Output: process_name PID PPID .....
Then you can kill the process using:
kill -9 PID