Ubuntu – Changing brightness on a Sony Vaio laptop

brightnesssonytroubleshootingvaio

I just installed Ubuntu 10.10 on a Sony Vaio laptop. The brightness functions keys don't change the brightness. When I try to change the brightness I can see the levels going up and down in the notification bubble but it doesn't actually change the brightness. Is there any way to fix this?

Best Answer

The solution for me was to edit the /etc/X11/xorg.conf file. It's a problem with the graphics driver not the keymap.

Open the file for editing and add the line

Option     "RegistryDwords" "EnableBrightnessControl=1"

in the Section "Device" section as shown below.

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    Option     "RegistryDwords" "EnableBrightnessControl=1"
    Option     "NoLogo" "True"
EndSection