If I have a process that is already running, and I do not want to interrupt it, is there any way to move it to a screen (for lack of a better way to phrase it), so that I close the connection I've established remotely with a server.

link|improve this question

Assuming you mean a console session? Usually you can CTRL+Z it and then keep it running in the background whith bg . – Mario The Spoon Apr 27 '11 at 5:49
If you do ^Z and bg the process will die as you close the console. You might want to use [disown][1] to keep the process running (like nohup) after you disconnect. [1]: unix.com/man-page/OpenSolaris/1/disown – lobster1234 Apr 27 '11 at 5:53
that's what i would use unix's screen for, so i could check on my process later by simply ssh'ing. I will check out disown, since i am not familiar with it. – Charlotte Apr 27 '11 at 5:55
[neercs][1] is able to steal a console/tty and thus redirect a process to it. According to the web site, one of [neercs][1]' feature is "Grabbing a process that you forgot to start inside neercs " You would find others options at blog.nelhage.com/2011/01/… linked from stackoverflow.com/questions/4746018/… [1]: caca.zoy.org/wiki/neercs – ydroneaud Apr 27 '11 at 7:50
open a new session, screen, reptyr <pid> – Jeff May 9 at 13:55
feedback

closed as off topic by Will Apr 28 '11 at 13:27

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

Browse other questions tagged or ask your own question.