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.
Assuming you mean a console session? Usually you can CTRL+Z it and then keep it running in the background whith bg . – Mario The SpoonApr 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 – lobster1234Apr 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. – CharlotteApr 27 '11 at 5:55
CTRL+Zit and then keep it running in the background whithbg. – Mario The Spoon Apr 27 '11 at 5:49^Zandbgthe 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:53screen,reptyr <pid>– Jeff May 9 at 13:55