4

I have an Aspire 5740 with an Intel Core i3, and Fn + arrow keys still call up the brightness adjuster, but have no effect on actually changing the brightness. The slider moves, but the brightness remains at maximum. System settings also allow me to move the slider, but again, with no effect.

It's killing my battery - please tell me what to code in to fix this!

Eric Carvalho
  • 55,453
Alexa
  • 41

2 Answers2

5

It's a known bug. You can view it here: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/543294 Well someone posted a workaroudn like this:

1. Open a terminal (Program - Accessories - Terminal)
2. Type in "sudo gedit /etc/default/grub" (without the "")
3. Find the line that says: GRUB_CMDLINE_LINUX="quiet splash"
4. Edit it so it says: GRUB_CMDLINE_LINUX="quiet splash acpi_backlight=vendor"
5. Save and exit
6. Run the command "sudo update-grub" (again without quotes of course)
7. Reboot and enjoy!

and yeah, it worked for me

ashutosh
  • 1,302
0

First back up:

sudo cp /etc/X11/xorg.conf /etc/X11/xorg.backup

Then:

sudo gedit /etc/X11/xorg.conf

Find the "Option "No Logo" " Add this underneath:

Option "RegistryDwords" "EnableBrightnessControl=1"

(Including all the quotes)

Then save either restart. That should work but you may need to edit grub, try the above first.

Jorge Castro
  • 73,717
Meddy
  • 650