在 i7-5930K 机器上安装 Ubuntu 20.04 服务器版后,我注意到在短暂没有用户交互后系统将自动暂停。
必须通过运行命令来禁用自动暂停
sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
系统为什么会自动挂起?挂起设置不应该默认禁用吗,尤其是因为这是 Ubuntu 的服务器安装?是因为主板 BIOS 设置吗?
答案1
检查 autosuspend.service 正在做什么:
$ sudo systemctl status autosuspend
如果需要,可以通过以下方式禁用:
sudo systemctl stop autosuspend
sudo systemctl disable autosuspend