web-dev-qa-db-ja.com

グラフィカルなシャットダウンメニューの代わりに「shutdown -h now」を実行するための電源ボタンを指定する方法

ラップトップの電源ボタンを押すと、グラフィカルなシャットダウンメニューを表示する代わりに、「shutdown -h now」コマンドが送信されるように指定したいと思います。 Ubuntu 11.10でこれを行うにはどうすればよいですか?

10
719016

それは十分簡単です。電源ボタンを押すと、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!)
16
Oli