我想防止我的系统(旧 HP 笔记本电脑上的 Ubuntu 22.04)在关闭盖子时进入睡眠状态。
我已经尝试编辑我的/etc/systemd/logind.conf
:
[Login]
#NAutoVTs=6
#ReserveVT=6
#KillUserProcesses=no
#KillOnlyUsers=
#KillExcludeUsers=root
#InhibitDelayMaxSec=5
#UserStopDelaySec=10
#HandlePowerKey=poweroff
#HandleSuspendKey=suspend
#HandleHibernateKey=hibernate
HandleLidSwitch=ignore #
HandleLidSwitchExternalPower=ignore #
HandleLidSwitchDocked=ignore #
#HandleRebootKey=reboot
#PowerKeyIgnoreInhibited=no
#SuspendKeyIgnoreInhibited=no
#HibernateKeyIgnoreInhibited=no
LidSwitchIgnoreInhibited=no #
#RebootKeyIgnoreInhibited=no
#HoldoffTimeoutSec=30s
IdleAction=ignore #
#IdleActionSec=30min
#RuntimeDirectorySize=10%
#RuntimeDirectoryInodesMax=400k
#RemoveIPC=yes
#InhibitorsMax=8192
#SessionsMax=8192
在编辑之前,只要合上盖子,我的系统就会进入睡眠状态;但现在需要一段时间才能进入睡眠状态。奇怪的是,当盖子没有合上时,系统会一直保持唤醒状态,只要我希望它保持唤醒状态。
我不知道任何日志是否有用;或者原因是什么。
$ gsettings get org.gnome.settings-daemon.plugins.power lid-close-ac-action
suspend
和
$ gsettings get org.gnome.settings-daemon.plugins.power lid-close-battery-action
suspend
答案1
在我的情况下,接受的答案不起作用(在 Ubuntu 22.04 上也是如此)。我必须安装 GNOME Tweaks,它可以在universe
存储库中找到:
sudo apt update
sudo add-apt-repository universe
sudo apt install gnome-tweaks
并禁用笔记本电脑盖关闭时暂停。
答案2
为了让笔记本电脑在合上盖子后继续运行,请在终端上运行以下命令,
使用空调时;
gsettings set org.gnome.settings-daemon.plugins.power lid-close-ac-action 'nothing'
使用电池时;
gsettings set org.gnome.settings-daemon.plugins.power lid-close-battery-action 'nothing'