I have a job which is scheduled to take around 1-2 days .Only option I have is to ssh into the machine (where it is going to run) using my home computer and start the job .Now my problem is that I want to use my home computer for other tasks during the interval and may be even shut it down /restart.So is there a way where I can start the job and ensure that it keeps on running even if I shut down the putty terminal on my home machine?

link|improve this question

56% accept rate
feedback

migrated from stackoverflow.com Feb 7 at 19:08

This question came from our site for professional and enthusiast programmers.

2 Answers

Yes, use screen if you want to get back to it, or detach and background it otherwise.

link|improve this answer
2  
... or tmux! – salva Dec 19 '11 at 9:14
@salva, yes, or tmux. – Michael Krelin - hacker Dec 19 '11 at 9:36
+1 for screen :) – Garrett Feb 7 at 20:14
feedback

'nohup' is your friend

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.