Advertisement
ahalford

Brightness

May 6th, 2015
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. http://itsfoss.com/fix-brightness-ubuntu-1310/
  2.  
  3. ls /sys/class/backlight/
  4. find graphics driver in Ubuntu
  5.  
  6. As you can see, the output for me is dell_backlight and intel_backlight. An indicator that the graphics card in use is Intel. Another way to find out the graphics card would be to go in System Settings->Details->Graphics. You can see the graphic card in use.
  7.  
  8. If your graphics card is Intel, you can proceed with the fix below.
  9.  
  10. Fix brightness control issue with Intel card in Ubuntu 14.04 and Linux Mint 17:
  11.  
  12. Open a terminal and create the following configuration file, if it does not exist:
  13.  
  14. sudo touch /usr/share/X11/xorg.conf.d/20-intel.conf
  15. Now we need to edit this file. You can use any editor be it a terminal one or graphical.
  16.  
  17. sudo gedit /usr/share/X11/xorg.conf.d/20-intel.conf
  18. Add the following lines to this file:
  19.  
  20. Section "Device"
  21. Identifier "card0"
  22. Driver "intel"
  23. Option "Backlight" "intel_backlight"
  24. BusID "PCI:0:2:0"
  25. EndSection
  26. Save it. Log out and log in back. The brightness control should be working through function keys now
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement