I didn't install anything myself, but only Ubuntu 12.04 LTS on an Acer 4741g.
I use Fn+left/right to change the brightness, but failed.
How can I control the brightness levels?
I didn't install anything myself, but only Ubuntu 12.04 LTS on an Acer 4741g.
I use Fn+left/right to change the brightness, but failed.
How can I control the brightness levels?
Try this:
sudo nano /etc/default/grub
. It will ask for your password. Type it in.GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
. Change it toGRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
sudo update-grub
in the terminal.Hope it helps.
Works for Acer Aspire v3-571,Acer Aspire v3 571g,Hewlett Packard Bell EasyNote TS,Acer Aspire 4755G,Acer Aspire 5750-6866, Acer Aspire 5739, Lenovo T540p
OP reported in Revisions 2 & 3 of the question that the following worked for him.
Ubuntu 14.04 (13.10+) with intel graphics
How to check if graphics card is intel
First, check if your graphics card is intel. You can check it from System Settings->Details->Graphics or with following command:
You should see something like:
Fix backlight
Make sure
/usr/share/X11/xorg.conf.d/20-intel.conf
exists. If it doesn't, make it yourself and add the following:Logout and Login. Done.
Thanks to Abhishek
Reposted a solution that worked for me http://itsfoss.com/fix-brightness-ubuntu-1310/
[Like in richy's, but] I use
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi="
(I'm on an Aspire 5750-6866.) It works fine, same control levels I had in Windows.
My brightness used to be stuck at max before I discovered this.
(Although brightness levels still reset after a restart/hibernate/shutdown)
I found out a solution that worked with my laptop:
add this to
/etc/rc.local
:I had the same problem. I have a Travelmate P633-V and I did this code to fix it.
After installing the scripts my FN-Left and FN-Right are working fine.
The script should work with all intel devices that exposes /sys/class/backlight/intel_backlight
https://github.com/codingtony/acer-brightness-linux-acpi
I got this problem when i upgraded from 11.10 to 12.04. enter this in terminal code:
Check for these lines GRUB_CMDLINE_LINUX_DEFAULT and change it as the below and save it.
After the update the grub
code:
sudo update-grub
Code:
Most simple and fast way to do this.... Use this command
Set the value in between 0 to 1 like in this case it is 0.5 This works for me Try this !!!
Whilst trying xbacklight didn't work for me because I'm using NVIDIA drivers, Light did the job pretty well for me.
After installing:
Increase backlight brightness by 5 percent
Decrease backlight brightness by 5 percent
Try the following:
Then change this line:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
toGRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi=Linux acpi_backlight=vendor"
Then in a terminal typesudo update-grub
Reboot and see if the problem is solved.