I am unable to adjust brightness levels through Gnome. I had the same issue with 18.04 but it was resolved there (honestly, I can't remember how).
lspci|grep VGA
00:02.0 VGA compatible controller: Intel Corporation Core Processor Integrated Graphics Controller (rev 18)
xrandr --output LVDS-1 --brightness 0.95
<-- this works through the terminal
excerpt from /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
Thank you in advance.
The xrandr solution didn't worked for me. I have installed brighness-controller and worked well.
UPDATED: After I have upgraded to Ubuntu 21, this issue has fixed completely. My laptop buttons of brightness control works normally. No needed additional configuration.
I am having similar issue. There is no screen brightness slider on system menu (the one below the volume). I know that there is a workaround using xrandr that goes like this:
The output looks like:
I am using a dual screen, so that is why I have 2 channels (DP-1 and DP-2). Then you can adjust the brightness by typing
Here, I am using 0.8 in monitor DP-3. Just do the same for the other monitor and we are all set.
However, I noticed that the screen brightness is oscillating and no solution that I found in the internet worked for me.
I had the same problem, which was solved following this post: How to Fix Brightness Keys Not Working in Ubuntu. The solution is quite simple:
Edit file
/etc/default/grub
and set:Save the file and update GRUB:
Restart the computer and it worked.
The rational behind the operations, as the author explained, is as follows:
I had the same issue, in my case all answers I found not working. Maybe my case is specific, but I hope my answer can help someone.
My computer is a Lenovo Legion Y740-15I with a nvidia GeForce RTX 2060. I have tried all solutions available but none worked. One day by chance when I installed tensorflow I had to install CUDA Toolkit 11.0 and his compiler.
After CUDA installation and a reboot I noticed brightness controller is working !!! I gave you all steps I followed below :
$ cat /usr/local/cuda/version.txt
$ sudo apt install nvidia-cuda-toolkit
$ nvcc -V
$ nvidia-smi
If you can see CUDA Version: 11 installation is done !Now check if your brightness controller work. Hope this might help someone...
PS: Also resolved boot black screen problem when login
In my case, I resolved this problem by upgrading the kernel version from 5.4 to 5.6. Run:
This will return the list of available kernels. I installed
linux-image-5.6.0-1028-oem
which is listed at the bottom at the moment.You can install it as follows.
After rebooting your system, you may see that your kernel is updated.
As a reference, my
GRUB_CMDLINE_LINUX_DEFAULT
is set to be that of the original one, i.e.GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
. In addition, I installed thebrightness-controller
, but I'm not sure whether it helped me or not.Hope this might help you.
For me, the problem was solved by simply rebuilding the initrd another time after booting into the new kernel:
Obviously, you should run this with the package of your current boot kernel. If you are unsure, run
uname -r
to get the kernel name. Moreover, package names afterdpkg-reconfigure
auto-complete in my bash, but your settings may vary.Doing this should always be safe and quick, so it would not hurt to try this before you do anything else. However, I add more details on my setup and what else I did below.
My configuration and observed behaviour
xrandr --output ... --brightness 0.8
) allowed me to change brightness, but system keys still do not work and usingxrandr
resets screen colour (night colour mode)Note that Nvidia drivers on MacBook Air 3,2 have a whole set of other, unrelated issues, some specifically related to brightness control. In particular, you need to add X-related device option settings
EnableBrightnessControl=1
as per Brightness not working after installing NVIDIA driver. Also, MacBook Air 3,2 by default may fail to boot usable graphics altogether in Nvidia drivers, which is fixed by setting certain PCI-E registers in grub as per Proprietary NVidia drivers with EFI on Mac, to prevent overheating. Both were applied before on my machine and remained active after the upgrade, so not related.What else I did (may have interacted with the above fix)
I saw two more boot-level issues after the upgrade and I fixed them too. Doing this might have interacted with the effectiveness of my fix:
Failed to Set MokListRT: Invalid Parameter
by following (a KDE Neon adapted version of) Shibiwan's answer on Ubuntu 20.04 Failed to Set MokListRT: Invallid Parameter./etc/default/grub
to containGRUB_TERMINAL=console
,GRUB_TIMEOUT_STYLE=menu
, andGRUB_TIMEOUT=10
. After this,update-grub
needs to be run (which the abovedpkg-reconfigure
will do as well).Having the grub menu working is also a minimal safety net when tempering with boot settings, so it makes sense to address this first if you see this too.
Open the
grub
file from the directory/etc/default
or run the command:in a terminal.
Edit the following line from:
to:
Run the command:
Restart your computer.
I had much easier solution. Somehow unintentionally I've disabled "Handle display brightness keys" option in Xfce Power Manager. When pressing the brightness keys, the notification popup was displayed but the brightness bar wasn't moving. I took quite a while before I realized this.
However this is only related to XFCE, I have Xubuntu 20.04.
Hi new to this particular forum so don't yet have enough reputation to just leave a comment. However, adding to Renato Miotto's answer to this issue using xrandr as it fixed the problem for me. Here are some bash scripts that allow brightness control and can be mapped to the brightness keys. Hope they are helpful and save you some time.
https://github.com/AlexBV117/BashScreenBrightnessScripts.
Open a terminal with Ctrl+Alt+T.
Open the file
/etc/default/grub
from the terminal:Update the following line from:
to:
Run from the terminal:
Restart the computer.
This worked for me. Ubuntu's own brightness control and keyboard brightness control work. Even when I turn the computer off and on, the setting does not change. This is real brightness control. When I lowered the brightness in third party programs, the screen became slightly bluish.