我正在使用 Lubuntu 13.04,想让电源按钮关闭计算机。目前它只会调出电源首选项菜单(注销、重启、休眠等...)。
在 Lubuntu 中,有 xfce4-power-manager v1.2,我尝试通过设置来修复它 常规->按下电源按钮时->关机 选项,但这并没有改变任何东西。
任何帮助将非常感激。
答案1
试试这个。编辑/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