Skip to content

Instantly share code, notes, and snippets.

@aursu
Created February 21, 2022 22:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save aursu/8a0b2cb4b187bdcac0890e4109d612e1 to your computer and use it in GitHub Desktop.
Save aursu/8a0b2cb4b187bdcac0890e4109d612e1 to your computer and use it in GitHub Desktop.
ACPI Error: AE_NOT_EXIST, Evaluating _PMM (20190816/power_meter-325)

The same problem on an HP server and there is a smarter solution found here: https://www.novell.com/support/kb/doc.php?id=7010449

Instead of disabling sensors in netdata altogether, you can just disable the acpi_power_meter kernel module, which doesn't work anyway on affected HP servers due to a BIOS bug. This way netdata can still get the temperature readings.

This is how you can disable the module immediately:

sudo modprobe -r acpi_power_meter

And this is how you make it permanent:

sudo echo "blacklist acpi_power_meter" >> /etc/modprobe.d/hwmon.conf

Solved the problem for me on an HP ProLiant DL180 running Debian 8.7.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment