6

I recently installed Linux Mint 14 on my Samsung R580 laptop. The Fn-keys worked out of the box, I can switch screens, adjust volume and so on.

When I try to adjust the brightness (Fn + /), the slider shows up and moves to the left and right, but screen brightness does not change at all, it always stays at 100%.

I tried to change the brightness in the system settings and it also doesn't do anything.

When I'm inactive for 5-10 minutes, the energy saving profile kicks in and the screen is dimmed. So the dimming does work, but not when I change it manually.

I found some threads stating that you should change the acpi_background setting to "vendor" in Grub config, but that didn't change anything for me.

What else can I try?

Indrek
  • 24,874
moeTi
  • 153

3 Answers3

6

From Samsung R580, Ubuntu 10.04 and Brightness control, not written for Mint but may still work :

Edit the /etc/X11/xorg.conf file and add the RegistryDwords line (only that line) to the Device section:

Section "Device"
  Identifier "Default Device"
  Driver "nvidia"
  Option "NoLogo" "True"
  Option "RegistryDwords" "EnableBrightnessControl=1"
EndSection
harrymc
  • 498,455
6

Edit this line in /etc/default/grub:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi="

Then:

update-grub
reboot
slhck
  • 235,242
1

For linux mint version 8 +

  • gksudo gedit /etc/default/grub
  • Find the line which says GRUB_CMDLINE_LINUX=""
  • enter acpi_backlight=vendor between the quotes ("")
  • sudo update-grub
  • reboot your laptop / pc

Source:

David
  • 135
  • 1
  • 7
DS_ED
  • 11