Ubuntu – Brightness wont change

appearancebrightness

I tried changing the brightness but it won't dim or brighten using keys or going under applications, it just stays the same.

Best Answer

Check which graphics driver is used to control the brightness

ls /sys/class/backlight/

if it responds with a list that includes intel_backlight proceed - if not, I can't help you

If you have the intel_backlight then

sudo touch /usr/share/X11/xorg.conf.d/20-intel.conf
gksudo gedit /usr/share/X11/xorg.conf.d/20-intel.conf

Add the lines

Section "Device"
        Identifier  "card0"
        Driver      "intel"
        Option      "Backlight"  "intel_backlight"
        BusID       "PCI:0:2:0"
EndSection

Logout, and log back in - your backlight should work now. I got this answer from itsfoss.com