2

I have a HP Elitebook 820 G1 laptop with Xubuntu 16.04 installed. Even though my power management settings in XFCE looks like this:

enter image description here

the monitor will go to sleep after X minutes and not wake up again.

Are there any special drivers I could look into to get this working?

Output from lspci:

Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 0b)

Kernel version:

$ uname -r
4.10.0-35-generic

1 Answers1

2

You may be affected by this bug which affected default 4.4.0 kernels in Xenial.

You can confirm your kernel version by issuing the command uname -r in the terminal. It has been reported and confirmed that this issue is resolved with the mainline kernel 4.4.11 It's my understanding that the mainline kernels may not be supported here. Before plunging into the reportedly unsupported world of mainline kernels it's recommended that you understand the implications of doing so.

If you decide to install a mainline kernel regardless the process is outlined here.

A wiser and simpler approach might be to simply check the output of apt-cache linux-image for a newer kernel version than the one you are running (above 4.4.0) and install that package.

EDIT: If the above doesn't work for you, an alternative approach would be to obtain the latest Intel Graphics Update Tool for your Ubuntu distribution and install that. Both 64-bit and 32-bit versions are available as of this moment.

Sources:

How do I update kernel to the latest mainline version?

How to update kernel to the latest mainline version without any Distro-upgrade?

Should I upgrade to the "mainline" kernels?

Elder Geek
  • 36,023
  • 25
  • 98
  • 183