回答:
とても簡単です。電源ボタンを押すと、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!)