Pages

Screen brightness problem with Acer ES1-131 and Debian 8 (Jessie)

I installed Debian 8 (Jessie) XFCE and LXDE desktop on Acer ES1-131 Netbook. I could successfully installed Debian. But problem is that, not able reduce the brightness of screen. Short cut key for brightness control not working.

The real problem with the Linux kernel. Default kernel version could not identify the Intel driver. You can find that /sys/class/backlight will be empty. Brightness control folder and files should be reside here.

How to solve it?
Solution is that upgrade the kernel of Debian.

Update the kernel
Check the current version of kernel using following command in a terminal,
su
uname -a

It will show the kernel version information.
Update sources list
Open following file using any editor, here I used leafpad editor,
leafpad /etc/apt/sources.list.d/sources.list
Add following lines,

deb http://http.debian.net/debian jessie-backports main
deb-src http://http.debian.net/debian jessie-backports main

Save the file and close it.

apt-get update
apt-get dist-upgrade

Install the kernel
Check the kernel versions available,

apt-cache search linux-image
It result list of kernel versions.
Install the latest version of kernel,
apt-get install -t jessie-backports linux-image-amd64

Restart the system

apt-get clean

init 6 

Check the new kernel version

uname -a

Visit again the folder /sys/class/backlight and you can find a new folder intel_backlight. It means the new kernel identify the Intel driver.

Change the brightness

leafpad /sys/class/backlight/intel_backlight/brightness 

and add the value 400. Save and close the file.

Now screen brightness under your control.
You can manage screen brightness using xrandr and xbacklight commands from terminal.

Reference

How to upgrade the Linux Kernel of debian 8 jessie
https://gist.github.com/minazou67/4bf63b463347558f3f01

No comments:

Post a Comment