8

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.

5 Answers5

16

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.

12

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.

M. Becerra
  • 3,538
  • 5
  • 24
  • 40
3
  1. sudo rmmod -f uvcvideo(to kill laptop camera)

  2. sudo modprobe -r uvcvideo(to restart the video module)

  3. sudo modprobe uvcvideo(to restart the laptop camera)

  4. sudo modprobe -a uvcvideo(can be used while skipping steps 2&3 to restart the camera directly)

Kevin Bowen
  • 20,055
  • 57
  • 82
  • 84
0

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
0

I found an easy solution... It happens if you have configured your sound input for the webcam mic. Change it to another and the light turns off.