vote up 3 vote down star

This programme takes lot of time to finish running,

it's running as root from ssh,

I want it to continue to run after it logout,is it possible?

flag

40% accept rate

7 Answers

vote up 5 vote down check

Assuming that you have a program running in the foreground, press ctrl-Z, then:

[1]+  Stopped                 myprogram
$ disown -h %1
$ bg 1
[1]+ myprogram &
$ logout
link|flag
Can you explain to me what exactly happens after each step? – Shore Jun 5 at 7:29
You press ctrl-Z. The system suspends the running program, displays a job number and a "Stopped" message and returns you to a bash prompt. You type the "disown -h %1" command (here, I've used a "1", but you'd use the job number that was displayed in the "Stopped" message) which marks the job so it ignores the SIGHUP signal (it will not be stopped by logging out). Next, type the "bg" command using the same job number. This resumes the running of the program in the background and a message is displayed confirming that. You can now log out and it will continue running... – Dennis Williamson Jun 5 at 10:23
...You should be aware that when you use the "bg" command the result is the same as if you'd run your program in the background with an ampersand (&). It won't have any output to stdout so it should be made to write output to a file (nohup will redirect standard output to nohup.out or ~/nohup.out if you don't redirect it yourself). – Dennis Williamson Jun 5 at 10:35
vote up 0 vote down

The nohup(1) idea is better than disown IMHO because disown is a shell-specific built-in of BASH while nohup is part of coreutils and likely to be everywhere.

link|flag
vote up 0 vote down

You could use screen, detach and reattach

link|flag
vote up 7 vote down

I would try screen.

link|flag
While screen is a mighty nice tool, nohup is probably better suited for this task. Screen is only needed when you require the program to be interactive, and to be able to go back to the application at a later time. To be entirely honest, I often find myself using screen for the exact same reason as the question above. – wvdschel Jun 5 at 5:59
1  
Even with non-interactive task, it's nice to see that the program finished without errors. It's also good practice to always use screen in case of disconnection. – brunoqc Jun 5 at 6:45
vote up 7 vote down

Have you tried using nohup and running it in the background?

nohup sleep 3600 &
link|flag
vote up 2 vote down

Start in the background:

./long_running_process options &

And disown the job before you log out:

disown
link|flag
but the programme has already started to run.. – Shore Jun 5 at 5:21
And will it contine to run as root? – Shore Jun 5 at 5:35
If the program is already running on the console and you can access the console it's running on hit "Ctrl+Z" to send it in the background and then disown the newly created job. As long as a process is started as root it will continue to run as root unless it drops privileges itself. – diciu Jun 5 at 5:49
But the command is named 'disown',isn't that to say root will disown the program,and the program will not continue to run as root ? – Shore Jun 5 at 5:51
After stopping the process with "Ctrl+Z" you send it in the background with "bg" before disowning it. – diciu Jun 5 at 5:52
show 1 more comment

Your Answer

Get an OpenID
or

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