I'd like to reduce the screen brightness on my Lubuntu desktop (Ubuntu 16.04).
I googled but could not find any soluton that works. (like using xbacklight -set 45 command.
Appreciate a simple working solution.
I'd like to reduce the screen brightness on my Lubuntu desktop (Ubuntu 16.04).
I googled but could not find any soluton that works. (like using xbacklight -set 45 command.
Appreciate a simple working solution.
execute any of these inside root terminal
echo 1 > /sys/class/backlight/acpi_video0/brightness
sudo echo 1 | sudo tee /sys/class/backlight/acpi_video0/brightness
if /sys/class/backlight/ folder is empty
nano /boot/grub/grub.cfg
add this to kernel line
acpi_osi=Linux acpi_backlight=vendor
or
nano /etc/default/grub
see a line like GRUB_CMDLINE_LINUX_DEFAULT and add
acpi_osi=Linux acpi_backlight=vendor
save and run
update-grub
to save changes to grub
reboot
......
nano /etc/derfauls/grub to nano /etc/default/grub
– John Orion
Dec 15 '17 at 01:54
# DO NOT EDIT THIS FILE on grub.cfg. I'm not going to mess with kernel to set the brightness. There should be a better way.
– Babr
Dec 15 '17 at 01:55
grub.cfg is a temporary solution.. its overridden every time by kernel updates; the permanent solution is /etc/defalts/grub; anw you need mods to grub only if /sys/class/backlight folder is empty
– user688056
Dec 15 '17 at 02:00
sudo /etc/default/grub and then run sudo update-grub I would not do it in the grub.cfg file
– John Orion
Dec 15 '17 at 02:03
I use Lubuntu with an Nvidia graphics card. The brightness setting is in the "NVIDIA X Server Settings" app. It's kind of buried though - you have to select the "HDMI-0" from the menu on the left, and then click the "color correction" tab.
You don't mention your graphics hardware, but if you don't use Nvidida, perhaps the setting is related to your graphics card as well.
fn + F5lowers my brightness andfn + F6raises it but on the screen .. it doesn't seem to lower the brightness in the "on screen display" .. the screen seems the same brightness until the OSD goes to 0 and if I keep hitting it .. it starts to dim after the meter drops to 0 on the display .. if that makes sense :) – John Orion Dec 15 '17 at 03:31Pre Ubuntu LTS 16.04I used what it said inSince Ubuntu LTS 16.04thelscommand showedintel_backlightso I added the stuff he said in nano and rebooted .. now myfnbuttons work correctly and the battery icon when I click on it and use the Display brightness .. that works too – John Orion Dec 15 '17 at 03:46