Results 1 to 3 of 3
Hi,
I am access my linux box remotely using putty. I ran some build process on the remote machine. I lost my connection and now I had to re login ...
- 02-10-2011 #1Just Joined!
- Join Date
- Feb 2011
- Posts
- 2
Reconnecting to server from Putty
Hi,
I am access my linux box remotely using putty. I ran some build process on the remote machine. I lost my connection and now I had to re login using putty. I dont know if my process has finished or not. How will I check that.
Thanks
- 02-10-2011 #2
You dont give too much detail about what build process that is,
but you could check, if the expected result is there. (whatever that is in your case)
Other than that, each process started via a remotely connected shell will die, once the connection breaks.
Unless the process has been properly detached.
Like starting a daemon, or using screen.You must always face the curtain with a bow.
- 02-11-2011 #3
+1 Irithori
1. start screen:2. do operation:$ screen3. (optionally) detach with key combo:$ start_long_operation4. if connection broke or you have detached, reattach:CTRL + A, DMore information can be found here:$ screen -r
If that build process takes really long it most probably has been interrupted and should be started again, just to be sure.$ man screen


Reply With Quote