I can not adjust the screen brightness on my HP Pavillion Dv3-2154ca, using Ubuntu 11.10. My Fn-f7/f8 keys don't work (they just show a changing screen brightness bar, with no effect), and adjusting 'screen brightness' does nothing as well.
I'm new to Ubuntu/Linux, so simple answers would be much appreciated!
3 Answers
I think that your problem is similar to this one. Because you use Ubuntu 11.10, you don't have to change the kernel, because kernel 3.0 is already patched with the fix. But, according to what is reported in the specified PPA, you may still need a fix to the boot options:
sudo -H gedit /etc/default/grubChange the line GRUB_CMDLINE_LINUX="" into
GRUB_CMDLINE_LINUX="acpi_backlight=vendor"Run:
sudo update-grubRestart Ubuntu
Please try this:
sudo -H gedit /etc/rc.localBefore the
exit 0statement, writeecho your_brightness > /sys/class/backlight/acpi_video0/brightnesswhere
your_brightnessmeans a number (1 - 10).- Example
echo 5 > /sys/class/backlight/acpi_video0/brightness - Reboot
Don't forget: You will need to run sudo update-grub if you want the changes in /etc/default/grub to be there when you reboot!