vote up 6 vote down star
2

I'm familiar with and use shutdown in Linux, and typically just do

> shutdown -h now

But is there a way to stop shutdown from happening, say if I aim to shutdown 10 minutes from now and then in 5 minutes time I discover I really don't want to shut down?

flag

4 Answers

vote up 11 vote down check

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`
link|flag
1  
so pkill shutdown would work? – David Feb 8 at 20:45
Yeah. Seems suboptimal if (and only if) your shutdown supports -c, though. – chaos Feb 8 at 21:19
1  
Alternatively: "killall shutdown" – Adam Rosenfield Apr 12 at 3:11
Hmm... I thought shutdown only ran long enough to change the run level... He's probably asking how to get init to STOP shutting down. – dicroce May 6 at 23:24
@dicroce: If you start a shutdown scheduled for some future time, like he talks about in the question, shutdown runs (hangs out, really) until it's time to actually shut down. The question is how to stop it during that time. – chaos May 17 at 22:01
vote up 4 vote down

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.

link|flag
vote up 4 vote down

From shutdown's man page on BSD systems:

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

link|flag
vote up 32 vote down

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.

link|flag
Which distro is that for? man.cx/shutdown doesn't mention a -c flag. – David Feb 8 at 20:49
2  
But this does: linux.die.net/man/8/shutdown – David Feb 8 at 20:51
Exists on vaguely recent Debian, dunno what else. – chaos Feb 8 at 21:05
Works on current versions of Redhat distros. – dagorym Feb 13 at 14:18
I was just looking this up in Ubuntu last night; it's in the man page for their version... well, the system shutdown just as I read that, though! – Code Duck Apr 12 at 3:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.