답변:
충분히 간단합니다. 전원 버튼을 누르면 ACPI 이벤트가에서 스크립트를 트리거합니다 /etc/acpi/powerbtn.sh
.
shutdown -h now
다음과 같이 첫 번째로 실행되도록 편집 할 수 있습니다 .
#!/bin/sh
# /etc/acpi/powerbtn.sh
# Initiates a shutdown when the power putton has been
# pressed.
/sbin/shutdown -h now "Power button pressed"
exit 0
# leave the old code below (in case you want to revert!)