Whenever I log in to Ubuntu, the brightness automatically goes to full. I'm using ubuntu 20.04 LTS with dual boot.
Any solution for this?
Whenever I log in to Ubuntu, the brightness automatically goes to full. I'm using ubuntu 20.04 LTS with dual boot.
Any solution for this?
This can often be fixed by adding a setting to your Grub configuration. Try this:
Open Terminal (if it is not already open)
Edit the Grub configuration file:
$ sudo vi /etc/default/grub
Note: Feel free to use any text editor you prefer, so long as you are editing the file with sudo
.
Find the line that starts GRUB_CMDLINE_LINUX_DEFAULT
and add acpi_backlight=vendor
. This should give you a line that looks similar to this:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
Note: Your line may be longer with additional settings if you have an Nvidia video device or other hardware.
Save the file and update Grub:
$ sudo update-grub
Reboot.
This should resolve the issue.