如何使用命令行或配置文件禁用挂起?

如何使用命令行或配置文件禁用挂起?

我想禁用挂起功能,因为我的 VPS 处于挂起状态并且我无法访问它。

我怎样才能做到这一点?

答案1

在 Ubuntu 16.04 LTS 上,我成功使用以下命令禁用挂起:

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

重新启用它:

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

答案2

您可以使用 gconf-editor

安装

sudo apt-get install gconf-editor

然后看看

/apps/gnome-power-manager/timeout

尝试设置sleep_computer_ac0

也许有帮助

答案3

这可能与您尝试运行 bash 脚本有关,当您关闭终端时它只会退出此脚本,这很容易解决。
步骤 1(如果尚未安装,请安装 screen)
sudo apt-get install screen

步骤 2(使用它!)
现在,在运行脚本之前,只需运行 screen!

如果您想稍后返回,请尝试运行 screen -R
我希望这会有所帮助!

相关内容