paapereira.xyz

Reduce brightness on HP Pavilion dv5-1020ep (Ubuntu 8.10 64 bits)

My brightness function keys always worked, but suddenly they stopped working as well as the “Reduce backlight brightness” option in Power Management Preferences :( Every time I unplugged my power cord the monitor dimmed automatically. Now not even with the function keys I get my brightness down.

This happened in my HP Pavilion dv5-1020ep running Ubuntu 8.10 64 bits.

Here some additional info after searching in the Ubuntu forums and Google:

1grep . -r /var/lib/acpi-support/*-*
1/var/lib/acpi-support/bios-version:F.20
2/var/lib/acpi-support/system-manufacturer:Hewlett-Packard 
3/var/lib/acpi-support/system-product-name:HP Pavilion dv5 Notebook PC 
4/var/lib/acpi-support/system-version:Rev 1
1more /proc/acpi/video/DVGA/LCD/brightness
1<not supported>
1sudo echo -n 5 > /proc/acpi/video/DVGA/LCD/brightness
1bash: /proc/acpi/video/DVGA/LCD/brightness: Permission denied

This happened either after a kernel or hal update…

I found a workaround, that allow the brightness to be changed. This isn’t the fix, if I unplug the power cord the brightness keeps it’s value. Still, the function keys do their job…

Just add acpi_osi=“Linux” to your grub menu:

1sudo vi /boot/grub/menu.ls
1title           Ubuntu 8.10, kernel 2.6.27-11-generic
2root            (hd0,2)
3kernel          /boot/vmlinuz-2.6.27-11-generic root=UUID=cba317f7-1d97-4cf8-9ac8-a4a6aaf0ea81 ro quiet splash acpi_osi="Linux"
4initrd          /boot/initrd.img-2.6.27-11-generic
5quiet

#Linux #Ubuntu #Ubuntu 8.10 #HP Pavilion Dv5-1020ep