Fix the fixed brightness
If you have faced the problem of fixed brightness of ubuntu then you are at the right place because after searching so much, i have finally found the solutions. Yeah you are right, solutions..! There are so many causes to this problem thats why i have listed the possible solutions.You can try each and every solution and do a reboot after applying solution.
Solutions
- Run this code in the terminal.
xrandr --output LVDS1 --brightness 0.5
(It will not change the brightness but only the contrast. Also there is no need to reboot) Editing Grub Configuration
- Run this command
sudo gedit /etc/default/grub
. It will open the grub file. - Change this code
B_CMDLINE_LINUX_DEFAULT="quiet splash"
toB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
OR (try the first one then second if first didn't work)
- Change this code
B_CMDLINE_LINUX_DEFAULT="quiet splash"
toB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi=Linux"
- And if none of the above worked then try adding both the pieces.(believe me its this much varying)
- Then run
update-grub
. Now just reboot the system.
- Run this command
- Now some more work. Go to the directory
/sys/class/backlight
.
- Check the interfaces there by running
ls
. There may be more than one likeacpi_video0
ORintel_backlight
. We'll perform the following steps for each interface and check the results. - Go to your interface directory, for eg. intel_backlight.
- Run this command
sudo echo 4 > brightness
sudo echo 4 > max_brightness
sudo echo 4 > actual_brightness - Check if the brightness changes. If it does then you'll have to change it each time using this method only. And if it does not then repeat the procedure for other interfaces.
- Check the interfaces there by running
- Newer kernel versions seem to have the problem so try to downgrade the kernel version to 3.12.
If it still not fixes the problem for you then get your laptop hardware checked or checking the graphics card properties. Although the second solution works for 80% of the people.
Comments
Post a Comment
Comment on articles for more info.