关机时“停止作业正在运行...”

关机时“停止作业正在运行...”

几乎每次我关闭或重新启动系统时,我都会在系统实际关闭之前收到以下消息:

A stop job is running for Session 1 of user xy

它等待 1:30 分钟,然后继续关闭。我正在使用 Debian Stretch 和 Gnome 3。此消息不会出现在系统日志中。

有任何想法吗?

答案1

我也遇到了同样的问题,在Arch Linux的reddit论坛上搜索发现了一个帖子。

这是适合我的解决方案 https://www.reddit.com/r/archlinux/comments/4bawf7/a_stop_job_is_running_for_session_c2_of_user/d17th3u

安装看门狗

# pacman -S watchdog

然后在开机时启动该服务:

# systemctl enable watchdog.service

启动服务就不会再看到该消息了

# systemctl start watchdog.service

我为此创建了一个要点https://gist.github.com/dianjuar/98d02af4050dc2df8ae6f18695d44ca3

相关内容