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?
|
|
|
|
|
|
|
Assuming that you have a program running in the foreground, press ctrl-Z, then:
|
||||||
|
|
|
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. |
||
|
|
|
|
You could use screen, detach and reattach |
||
|
|
|
|
I would try screen. |
||||||
|
|
|
Have you tried using
|
||
|
|
|
|
Start in the background:
And disown the job before you log out:
|
||||||||||
|