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

by on March 1, 2006 · 0 comments· last updated at March 1, 2006

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"



You should follow me on twitter here or grab rss feed to keep track of new changes.

Featured Articles:

{ 0 comments… add one now }

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <kbd> <blockquote> <pre> <a href="" title="">

Tagged as:

Previous Faq:

Next Faq: