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