Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

My laptop is Samsung NP-Q430-JS03US. I have searched for the solution. I have tried editing grub acpi_osi=Linux and acpi_backlight=vendor, but still didn't work.

Please help.

share|improve this question

4 Answers

Try using xbacklight.

  • Install it by running sudo apt-get install xbacklight in a terminal.
  • Change brightness by xbacklight -set <level>, where <level> is an integer ranging from 0 to 100 (lowest brightness to highest).

For example, to set medium brightness one would use

xbacklight -set 50
share|improve this answer

Your laptop is Optimus-enabled. That means that it has two video cards: an Intel card and a Nvidia one (meant to be used for games only). This is problematic because Optimus has been designed to work with Microsoft Windows, and Ubuntu won't play very good with it.

Please check your BIOS setup, whether the Optimus option is enabled or not --if there's even any Optimus settings.

With Optimus enabled, your display will be managed by the Intel card. The brightness controls should work out-of-the-box. The Nvidia card will be fully-powered all the time though, and you need to setup Bumblebee to avoid this and to be able to use the Nvidia card for gaming.

With Optimus disabled, your display will be managed by the Nvidia card, and you'll lose the brightness controls, since the Nvidia card is not capable of accessing them.

share|improve this answer

I believe you should sudo open /etc/default/grub, find the line that starts with GRUB_CMDLINE_LINUX_DEFAULT and make it look like this:

GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash pcie_aspm=force acpi_osi=Linux i915.i915_enable_rc6=1″
share|improve this answer

I have a Samsung NP300E5a with Optimus. Same problem after upgrading to Kernel 3.5.0-31-generic. I found a solution that works for me here "Brightness problem on a Samsung 530U3B". Details below

Add the "Linux On My Samsung" repository to the sources list: Code: sudo add-apt-repository ppa:voria/ppa Update the programs list: Code: sudo apt-get update Install samsung-backlight: Code: sudo apt-get install samsung-backlight Restart the system and check if backlight control works

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.