Power Button Graceful Shutdown (ACPI): Difference between revisions

From KlavoWiki
Jump to navigationJump to search
(Created page with "[http://en.wikipedia.org/wiki/Advanced_Configuration_and_Power_Interface | ACPI] is Advanced Configuration and Power Interface. This allows you to shut down an operating syst...")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
[http://en.wikipedia.org/wiki/Advanced_Configuration_and_Power_Interface | ACPI] is Advanced Configuration and Power Interface.  This allows you to shut down an operating system by pressing the power button on the front of a computer/server.
[http://en.wikipedia.org/wiki/Advanced_Configuration_and_Power_Interface ACPI] is Advanced Configuration and Power Interface.  This allows you to shut down an operating system by pressing the power button on the front of a computer/server.


To gracefully shutdown CentOS with the power button you must install the ACPI services.
To gracefully shutdown CentOS with the power button you must install the ACPI services.
<pre>
<pre>
yum -y install acpid
yum -y install acpid
service acpid start
systemctl enable acpid
chkconfig acpid on
systemctl start acpid
</pre>
</pre>


[[Category : Linux]]
[[Category : Linux]]

Latest revision as of 05:45, 29 June 2015

ACPI is Advanced Configuration and Power Interface. This allows you to shut down an operating system by pressing the power button on the front of a computer/server.

To gracefully shutdown CentOS with the power button you must install the ACPI services.

yum -y install acpid
systemctl enable acpid
systemctl start acpid