I have a server process running in a gnome-terminal at home. I am at work, and I want to detach the process from that terminal and move it to screen without restarting it. Also, I can't use VNC. Is there a way to do this? asked 18 Sep '10, 00:22 Joehillen |
About detaching part: stop process (Ctrl+Z) move it to the background (bg) detach it from bash(disown) Move it to 1) open 2) find out what is screen output pseudo terminal 3) attach to your process with 4) redirect your process standard output to screen pseudo terminal (using magic in link above,
I mean answered 18 Sep '10, 13:04 maszynista |