Power Button Graceful Shutdown (ACPI): Difference between revisions

From KlavoWiki
Jump to navigationJump to search
No edit summary
No edit summary
 
Line 4: Line 4:
<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