4

My laptop has keyboard buttons for adjusting screen brightness. After a Debian Squeeze re-installation, they don't work no more.

[laptop] Acer TravelMate 6592; I use Fn< to decrease the brightness and Fn> to increase it.

tshepang
  • 64,472
  • 86
  • 223
  • 290
  • These things can sometimes be brand/model specific so a bit of information about the laptop in question might be useful. – Steven D Feb 10 '11 at 17:42

4 Answers4

2

Is it a problem of key mapping or a problem of acpi support ?

Check in /proc/acpi/ if you have some entries like this one : /proc/acpi/video/GFX0/LCDD/brightness

If you find it, try to set a value maybe like this :

echo "4" > /proc/acpi/video/GFX0/LCDD/brightness
wag
  • 35,104
  • 11
  • 66
  • 51
profy
  • 373
  • 1
  • 2
  • 7
1

It's probably the case that it got removed in the latest Debian Squeeze kernel (which is where the problem was), and it's now put back in 2.6.38. I say that because it was working way before Squeeze was released (and I only use pristine Debian kernel packages).

tshepang
  • 64,472
  • 86
  • 223
  • 290
1

If you can change your brightness with root user by typing:

echo 100 > /sys/class/backlight/<xxx>/brightnes

Then, you can follow this link: https://askubuntu.com/a/82320/301773

user74909
  • 11
  • 1
1

Add "acpi_osi=Linux" to loader


Example:

title Arch Linux
root (hd0,1)
kernel /vmlinuz26 root=/dev/sda5 ro acpi_osi=Linux
initrd /kernel26.img
1vanu4
  • 11
  • 1