Up until yesterday I was running Ubuntu 12.10 on my Dell Latitude E6530. Recently I played around with the nvidia settings, which caused my brightness control to stop working. However, I could fix it by adding Option "RegistryDwords" "EnableBrightnessControl=1"
to /etc/X11/xorg.conf
as advised in [1].
Now, last night I upgraded to Ubuntu 13.04 because I needed are newer kernel. After that, the brightness control once again stopped working. But this time, [1] doesn't help. I have also tried the methods in [2]:
acpi_backlight=vendor
in/etc/default/grub
acpi_osi=Linux
in/etc/default/grub
echo $SOME_VALUE | sudo tee /sys/class/backlight/dell_backlight/brightness
None of them are working, the brightness just doesn't change, but that's about all I could find for this problem. Any ideas on how I can get my brightness control back?
sudo update-grub
after modifying/etc/default/grub
? If not, try both permutations with and withoutacpi_backlight=vendor
. Also, with each permutations, try sequentially modifying other files at/sys/class/backlight/*/brightness
. (This may be of interest: https://forum.kde.org/viewtopic.php?f=63&t=110984 ) – Sparhawk Nov 16 '13 at 01:16update-grub
. I tried every permutation I could think of, but nothing. The only thing I notice is that if I change thebrightness
file and use the brightness key, I can see that Ubuntu's little popup responded to it. But the brightness itself just doesn't change. – Ingo Bürk Nov 16 '13 at 09:41