Linux下如何取消关机?

发布于 2024-07-13 18:19:09 字数 1459 浏览 7 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

蓝咒 2024-07-20 18:19:09

关闭-c 是在最近的关机中“取消关机”。

该语法还支持用于公告目的的 shutdown -c,因此如果其他人使用该机器,这会很方便。

shutdown -c  is "cancel shutdown" on reasonably recent shutdowns.

The syntax also supports shutdown -c <message> for announcement purposes, so that's handy if other people use the machine.

别闹i 2024-07-20 18:19:09

您可以使用  ps   找到关闭进程并中止它,例如使用 ps|grep shutdown

替代且不那么引人注目的版本:

pkill shutdown
killall shutdown
kill `cat /var/run/shutdown.pid`

You can use  ps  to find the shutdown process and abort it, for example with ps|grep shutdown.

Alternate and less eyeball-intensive versions of this:

pkill shutdown
killall shutdown
kill `cat /var/run/shutdown.pid`
披肩女神 2024-07-20 18:19:09

如果您在 shutdown -c 的绘制上晚了一秒,并且已经在控制台上 root,则非常快的 # init 5 将在 init 更改运行级别后取消关闭。

注意:这个答案现在基本上已经过时了。 init 5 在 systemd 上并不是很有用,遗憾的是,大多数系统现在都在使用 systemd。

If you're a second late on the draw for shutdown -c, and already root on the console, a very fast # init 5 will cancel a shutdown after init changes runlevel.

NOTE: This answer is mostly obsolete now. init 5 isn't very useful on systemd, which, sadly, most systems now use.

紧拥背影 2024-07-20 18:19:09

来自 BSD 系统上 shutdown 的手册页:

可以取消计划的关闭
通过终止关闭进程(a
SIGTERM 就足够了)。

From shutdown's man page on BSD systems:

A scheduled shutdown can be canceled
by killing the shutdown process (a
SIGTERM should suffice).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文