6

I have ubuntu 12.04 installed on windows 7. When I use the Fn alongside the key to reduce brightness, or even using the system settings, I am not being able to reduce the screen brightness. What is the problem?

6 Answers6

3

Run:

sudo gedit /etc/default/grub

Update these lines:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

... with the following arguments:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
GRUB_CMDLINE_LINUX="acpi_osi=Linux"

Then run sudo update-grub and reboot.

Eliran Malka
  • 1,205
  • 18
  • 36
Zumy
  • 31
  • 1
    hey..this is not working for me..Instead my Fn key has completely stoppd working, first it showed the brightness bar, but the brightness just didnt reduce..Now, it is not even showing the brightness level when I press the Fn key alongside key to reduce brigtness. –  Jun 11 '12 at 05:41
  • 1
    It worked on my system with the 2 modifications on one line: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi=Linux acpi_backlight=vendor" – To Do Dec 13 '12 at 14:45
1

I have a SONY VPCEG Vaio and to manipulate brightness in Ubuntu. Based on a article that I lost, I use this:

https://github.com/ricardodani/sony-vpc-brightness-linux/blob/master/bright.py

Eliah Kagan
  • 117,780
Ricardo
  • 111
1

Here's how i fixed mine :

LCD Brightness Control

Once you have installed the proprietary Nvidia drivers as suggested above, you may notice that your brightness control keys do not work properly. This is fixable by editing one's xorg.conf file. Open a terminal window and type the following:

sudo nano /etc/X11/xorg.conf

This will open your X server configuration (after prompting for your password). You should see a section titled "Device" that looks as follows:

Section "Device"
        Identifier      "Default Device"
        Driver  "nvidia"
        Option  "NoLogo"        "True"
EndSection

Append a line so it appears like this:

Section "Device"
        Identifier      "Default Device"
        Driver  "nvidia"
        Option  "NoLogo"        "True"
        Option "RegistryDwords" "EnableBrightnessControl=1"
EndSection

You will need to restart your graphical server (or reboot) for this change to take effect.

Raja G
  • 102,391
  • 106
  • 255
  • 328
Mac
  • 11
  • 1
0

I had the same problem and I solved it as follows.

This page shows how to set up the 3D cube and I am enclosing it because I used the same tool: CompizConfig Settings Manager.

That page tells you what to install and how to do it. Once it's installed, open CompizConfig Settings Manager, go to Accessibility > Opacity. Click on the Brightness and Saturation/*Brightness* tab.

Enable "Increase and Decrease Brightness" and set the key combination for it. Be careful. CompizConfig Settings Manager is a very powerful tool and if you don't know what you are doing, you may damage your Ubuntu system.

I would have posted screenshots but it is prohibited to new users. It is fairly simply though.

Eliah Kagan
  • 117,780
  • Can you post the screenshots elsewhere and link here...so someone eventually come and modify this post to include it in your answer – deostroll Jun 17 '12 at 17:12
  • hey christos, this is not working for me..i did exactly wt u said, but nothing is happening.. –  Jun 18 '12 at 13:05
  • @christos If you post a comment with link(s) to screenshot(s), and you ping me in the comment (by including the string @EliahKagan), I'll put them in this answer for you. – Eliah Kagan Aug 06 '12 at 04:01
0

There is an app for it...Brightness And Lock

enter image description here

enter image description here

deostroll
  • 1,769
0

I have a SONY Vaio E15 ( E15113 ) and was able to solve the problem using the solution mentioned in an earlier post

https://github.com/ricardodani/sony-vpc-brightness-linux/blob/master/bright.py

  • 2
    While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – Peachy Sep 13 '12 at 17:07