I disabled Secure Boot in BIOS and reinstalled Ubuntu 18.10. I followed the steps described in the following link to modify the grub. However, after executing sudo update-grub and rebooted the system, I still cannot change the brightness using the function keys.
Asked
Active
Viewed 1,345 times
1 Answers
0
Ok, I've figured it out for me, at least with ubuntu 18.04 as of 2/11/2019.
Install ubuntu nvidia drivers:
# use auto-install (as mentioned by @Ibrahim) sudo ubuntu-drivers autoinstall
Edit the
GRUB_CMDLINE_LINUX_DEFAULT
entry in the/etc/default/grub
to the following:GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nvidia.NVreg_EnableBacklightHandler=1"
Update grub configuration after edit and save:
sudo update-grub
Reboot:
sudo reboot

monkut
- 291
- 1
- 4
- 11
-
sudo ubuntu-drivers autoinstall
and a reboot worked for me after upgrade 20.04 to 22.04 with Lenovo Thinkpad X1 Extreme – ThurstonLevi Jun 01 '22 at 07:29
ubuntu-drivers autoinstall
in recovery mode, and my brightness keys work fine. I also switched to LightDM instead of GDM3 but that was more because locking the screen was not working properly with GDM3, I think the brightness keys still worked.I also have the 4k screen.
– Ibrahim Nov 09 '18 at 08:07sudo ubuntu-drivers autoinstall
as mentioned by @Ibrahim and rebooted. (I noticed it was a little dim) The screen got brighter, but the function keys for brightness still don't work. – monkut Feb 11 '19 at 04:53