Debian 10 - 使用电源按钮关闭服务器电源,如何测试 acpi?

Debian 10 - 使用电源按钮关闭服务器电源,如何测试 acpi?

我希望能够使用机箱前面的电源按钮关闭服务器电源,而不必手动登录并关闭服务器电源。

从我迄今为止的研究来看,我相信我必须安装 acpi 才能做到这一点,我已经这样做了。

我已经启动了 acpi 服务,并使用 systemctl 启用了它。现在状态为“活动”。

然而,当我按下按钮时,我不知道系统是否已关闭或处于睡眠状态。

我怀疑它正在睡眠并且没有断电,因为如果我再次按下它,它会很快再次启动。

如何测试 acpi 是否正常工作?我尝试查看系统日志文件/var/log/syslog,但里面有很多内容,我不知道到底要查找什么。

答案1

您可以通过编辑来配置电源按钮的行为/etc/systemd/logind.conf

#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.
#
# Entries in this file show the compile time defaults.
# You can change settings by editing this file.
# Defaults can be restored by simply deleting this file.
#
# See logind.conf(5) for details.

[Login]
#NAutoVTs=6
#ReserveVT=6
#KillUserProcesses=no
#KillOnlyUsers=
#KillExcludeUsers=root
#InhibitDelayMaxSec=5
#HandlePowerKey=poweroff
#HandleSuspendKey=suspend
#HandleHibernateKey=hibernate
#HandleLidSwitch=suspend
#HandleLidSwitchExternalPower=suspend
#HandleLidSwitchDocked=ignore
#PowerKeyIgnoreInhibited=no
#SuspendKeyIgnoreInhibited=no
#HibernateKeyIgnoreInhibited=no
#LidSwitchIgnoreInhibited=yes
#HoldoffTimeoutSec=30s
#IdleAction=ignore
#IdleActionSec=30min
#RuntimeDirectorySize=10%
#RemoveIPC=yes
#InhibitorsMax=8192
#SessionsMax=8192

只需取消注释该行#HandlePowerKey=poweroff并重新启动(尽管 Debian 10 中默认情况下按下电源按钮时似乎已经关闭电源)。

相关内容