web-dev-qa-db-ja.com

Lubuntu-電源ボタンでコンピューターの電源が切れない、

Lubuntu 13.04を使用していますが、電源ボタンを押してコンピューターをシャットダウンしたいです。現在、電源設定メニュー(ログアウト、再起動、休止状態など)のみが表示されます。

Lubuntuにはxfce4-power-manager v1.2があり、ここで一般->電源ボタンが押されたとき->シャットダウンオプションを設定して修正しようとしましたが、これはしませんtは何も変更しません。

どんな助けでも大歓迎です。

4
cloying

これを試して。 /etc/acpi/powerbtn.shを編集し、以下の行がその中の最後の行であることを確認してください。

# If all else failed, just initiate a plain shutdown.
/sbin/shutdown -h now "Power button pressed"

/etc/acpi/events/powerbtnも調べて、以下、特に最後の部分と一致することを確認してください。

# /etc/acpi/events/powerbtn
# This is called when the user presses the power button and calls
# /etc/acpi/powerbtn.sh for further processing.

# Optionally you can specify the placeholder %e. It will pass
# through the whole kernel event message to the program you've
# specified.

# We need to react on "button power.*" and "button/power.*" because
# of kernel changes.

event=button[ /]power
action=/etc/acpi/powerbtn.sh

変更を加える場合は、動作するかどうかを確認する前に、必ず実行してください。再起動が必要になる場合があります。

Sudo service acpid restart
3
Mitch