Skip to content

Instantly share code, notes, and snippets.

@andy108369
Forked from aursu/api-error.md
Created July 28, 2022 10:17
Show Gist options
  • Save andy108369/907be186121b41d594b9038f641908e6 to your computer and use it in GitHub Desktop.
Save andy108369/907be186121b41d594b9038f641908e6 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