Thursday, April 27, 2017

Resolving the Brightness in Kali

Resolving the Brightness in Kali


If you've been suffering from unadjustably high brightness in kali , here's a solution to it. This works for those having nvidia graphics.


  • open the terminal
  • run the following command: 
  • echo 10 > /sys/class/backlight/nv_backlight/brightness 
  • You could put any value replacing 10. Put any value between 0-100.This value represents the brightness level.

You can run the above commands if every time you boot in to your system, it greets you with the unadjustable brightness.

Here's another thing you can try.(This one is for lazy asses)


 You can make commands run automatically on every time you open the terminal. What if you embed above code ? Now, you don't need to type the command to adjust the brightness.Here's how you do::
  • open the terminal
  • run: leafpad .bashrc
  • paste the command: echo 10 > /sys/class/backlight/nv_backlight/brightness 
  • save the file & close it
Now, every time you boot into your system,open the terminal & close it, the brightness should be fine.

No comments:

Post a Comment