如何通过 CLI 禁用 Ubuntu 20.04(systemd)上的挂起

如何通过 CLI 禁用 Ubuntu 20.04(systemd)上的挂起

我有一台安装了 ubuntu 20.04 的笔记本电脑,用作服务器。因此,我希望它永远不会挂起。

默认情况下,当盖子关闭时它会自动暂停。

因为我只能通过 ssh 访问它(并且没有安装 X),所以我需要通过 CLI 禁用它。

多个网站建议使用

sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target

这确实可以阻止笔记本电脑在盖子关闭时挂起,但会导致 systemd-logind 消耗 100% 的 CPU 并持续记录以下内容:(每秒多次)

 systemd-logind[514]: Suspending...
 systemd-logind[514]: Unit suspend.target is masked, refusing operation.
 systemd-logind[514]: Failed to execute suspend operation: Permission denied

有人能告诉我如何适当地禁用暂停?

答案1

经过进一步的搜索,我找到了正确的答案:

/etc/systemd/logind.conf底部添加以下几行:

HandleSuspendKey=ignore
HandleHibernateKey=ignore
HandleLidSwitch=ignore
HandleLidSwitchExternalPower=ignore
HandleLidSwitchDocked=ignore

然后运行

systemctl restart systemd-logind

以激活新设置。

相关内容