4

I followed this guide to install bumblebee on my Dell XPS 15 9560 running Ubuntu 17.04 in an attempt to fix the fan-always-on problem. This fixed issue with the fan and the power draw, but now I can't adjust the screen brightness.

When I followed the guide my screen was set to minimum brightness, and now it is stuck that way. The brightness function keys bring up and adjust the brightness bar icon and appear to be working, but the screen brightness does not adjust.

When I boot the screen starts out bright, but then during the boot sequence it dims and stays that way. If I boot into Windows 10 I can adjust the brightness normally.

Changing acpi_backlight=none to acpi_backlight=vendor on the GRUB_CMDLINE_LINUX_DEFAULT line in /etc/default/grub, running update-grub and rebooting has no effect. If I change the entire line from the one suggested in the linked bumblebee install guide to the one suggested in this answer then my system does not boot at all.

Imran
  • 374

2 Answers2

2

May not be a universal solution, but try this:

sudo tee /sys/class/backlight/acpi_video0/brightness < /sys/class/backlight/acpi_video0/max_brightness

If you are using the Intel graphics card rather than the Nvidia one:

sudo tee /sys/class/backlight/intel_backlight/brightness < /sys/class/backlight/intel_backlight/max_brightness

Alternately, try replacing N with various small numbers (1 - 7 work for me but that is probably hardware specific) in the following:

sudo echo N | sudo tee /sys/class/backlight/acpi_video0/brightness
Ocramius
  • 105
1

I tried adding acpi_backlight=none to the GRUB_CMDLINE_LINUX_DEFAULT string in /etc/default/grub, running sudo update-grub2 and rebooting one more time and this solved my problem. The brightness keys now correctly control my screen brightness. I don't know why this didn't work on the first try.

Imran
  • 374