Please provide me a solution how to fix this?
Asked
Active
Viewed 6,131 times
4
-
Do you have proprietary graphics drivers installed? – SirCharlo May 25 '12 at 12:38
-
1@SirCharlo A laptop's backlight is not controlled by the graphics card or graphics drivers. – Eliah Kagan May 29 '12 at 05:25
2 Answers
7
Edit "/etc/default/grub" as root.
gksu gedit /etc/default/grub
Now, look for the line that looks like:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Append "acpi_backlight=vendor acpi_osi=Linux" to the end of that line, before the end quotes, so that the line now looks something like this:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor acpi_osi=Linux"
Save and close the file, and run the following command:
sudo update-grub
Now, reboot, and test out the brightness keys. They should be working correctly now.

SirCharlo
- 39,486
-
-
-
I have Dell Inspiron 7520, this solved my problem, but the system became unstable. The brightness controls had some delay before actually changing the brightness, also when I pressed some brightness button the reaction was as if I pressed it twice. When I pressed those buttons quickly and chaotically the system could stuck, the mouse pointer speed reduced and the KDE even logged me off. So very weird behavior. – Vic Mar 04 '14 at 08:19
0
Have a look at this bug: https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/762670
It's for the XPS 17, but maybe it works on the 15" model too.

Timo
- 4,680
-
I didnt check ur solution,because the above one worked....still anyways thanks for the effort :) – Rahul May 28 '12 at 11:05