How to find out if Advanced Power Management support available or not under Linux

by nixcraft on March 1, 2006 · 0 comments

Advanced Power Management (APM) is an API developed by Intel and Microsoft, which allows BIOS to perform power management.

These days it is outdated and replaced by ACPI (The Advanced Configuration and Power Interface).

Under Linux to find out if, Advanced Power Management support available or not you need to type following commands:

$ apm_available
$ echo $?

It returns three values:

  • 0 (true) : APM subsystem is available
  • 1 (false): APM subsystem is not available
  • 2 : Usage error (arguments supplied)

You can also try out following command:

$ apm_available && echo "Yes" || echo "No APM support"

You can use following command to test whether ACPI subsystem is available or not:

$ acpi_available && echo "Yes" || echo "No APM support"

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 12 + 9 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.



Previous post:

Next post: