是什么让我的笔记本电脑在闲置 1200 秒后暂停?

是什么让我的笔记本电脑在闲置 1200 秒后暂停?

我希望我的笔记本电脑在使用交流电源时仍能保持运行,即使在闲置且盖子关闭时也是如此。

我设法使其在关闭盖子时不会立即暂停:

/etc/systemd/logind.conf:
[Login]
HandleLidSwitch=ignore
HandleLidSwitchExternalPower=ignore
HandleLidSwitchDocked=ignore
IdleAction=ignore
IdleActionSec=1min

但重新启动后(未登录gdm)大约 1200 秒,它会挂起到 RAM。

我缺少什么?

$ uname -a
Linux nlv 5.4.0-29-generic #33-Ubuntu SMP Wed Apr 29 14:32:27 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
$ cat /etc/issue
Ubuntu 20.04 LTS \n \l

$ cat /etc/systemd/sleep.conf (# comments removed for brevity)
[Sleep]

答案1

看看这个文件,/etc/systemd/sleep.conf

里面应该有这个条目

[Sleep]
AllowSuspend=no

答案2

这似乎是一个gdm守护进程设置,与用户设置分开控制。

要更改设置,请使用

sudo -u gdm dbus-launch gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-ac-type 'nothing'

由于您有一台也适用于电池模式的笔记本电脑:

sudo -u gdm dbus-launch gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-battery-type 'nothing'

取自建筑维基百科中的自动挂起gdm

正如用户 Simon McVittie 所指出的,这似乎是遵守节电法规的结果gnome.org讨论该问题的地方。

无法测试,因为未运行gdm

相关内容