我想指定当我按下笔记本电脑的电源按钮时,发送“shutdown -h now”命令,而不是调出图形关机菜单。如何在 Ubuntu 11.10 上做到这一点?
答案1
这很简单。当您按下电源按钮时,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!)