I have a process that is already running for a long time and don't want to end it.
How do I put it under nohup (i.e. how do I cause it to continue running even if I close the terminal?)
|
feedback
|
|
Using the Job Control of bash to send the process into the background:
And as Sam/Jan mentioned you have to execute disown to avoid killing the process after you close the terminal.
| |||||||||||
feedback
|
|
The command to seperate a running job from the shell ( = makes it nohup) is From bash-manpage (man bash):
That means, that a simple
will remove all jobs from the job-table and makes them nohup | ||||
|
feedback
|
|
these are good answers above, I just wanted to add a clarification, You can't disown a pid or process, you disown a Job, and there is an important distinction. A Job is something that is a notion of a process that is attached to a shell. Therefore, you have to through the job into the background (not suspend it) and then disown it. issue: % jobs [1] running java [2] suspended vi % disown %1 See http://www.quantprinciple.com/invest/index.php/docs/tipsandtricks/unix/jobcontrol/ for a more detailed discussion of Unix Job Control. | ||||
|
feedback
|
|
Suppose for some reason Ctrl+Z is also not working, go to another terminal, find the process id (using ps) and run
kill -20 will suspend the process and kill -18 will resume the process, in your other terminal | |||
|
feedback
|