Ubuntu – Screen brightness control not working on Lenovo T530

brightnesslenovonvidia

My brightness control doesn't work with a fresh install of 12.10 (brand new laptop). It is set to the brightest setting when I boot up and when I try to change it, I see the notification bar come up but the brightness doesn't actually change. I've tried all the solutions I could find around the Internet but none of them work. Things I have tried include:

Editing /sys/class/backlight/acpi_video0/brightness

In /usr/share/X11/xorg.conf.d/10-brightness-control.conf: Option
"RegistryDwords" "EnableBrightnessControl=1"

In /etc/default/grub: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash
acpi_osi=Linux acpi_backlight=vendor"

There is no xorg.conf file in 12.10 that I have found, so the solutions that suggest editing that file don't do me a whole lot of good.

I am currently using the Nouveau driver, but switching to the Nvidia proprietary drivers made no difference.

Any other ideas? When is this bug going to be fixed? With all the reports I've come across I would think it would get a lot of attention. Thanks.

Best Answer

I had a similar problem on my thinkpad W530. I finally found a solution here:

http://blog.pearce.org.nz/2012/08/enabling-external-monitor-on-lenovo.html

These days X automatically configures itself, so you can't just edit the xorg.conf file, you instead need to add a section to a file in /usr/share/X11/xorg.conf.d/ and X will include that section in the configuration that it automatically generates.

So to get the screen brightness keys working with your Nvidia graphics card, create a file in the xorg.conf.d directory, e.g:

sudo gedit /usr/share/X11/xorg.conf.d/10-nvidia-brightness.conf

Paste the following into the file:

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "Quadro K1000M"
    Option         "RegistryDwords" "EnableBrightnessControl=1"
EndSection