Run a command in a shell and keep running the command when you close the session - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T19:00:19Zhttp://stackoverflow.com/feeds/question/431521http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/431521/run-a-command-in-a-shell-and-keep-running-the-command-when-you-close-the-session6Run a command in a shell and keep running the command when you close the sessionEduardo2009-01-10T18:46:55Z2009-11-13T05:51:38Z
<p>Hello, I am using Putty to connect to a remote server. What I want to know is if there is any way to write my commands and allow them to keep running after I close the session with Putty. The reason for this is that I do not want to keep the computer ON all the time. Is there any way to do this?.</p>
<p><strong>Upadate with the solution</strong></p>
<p>For my question as it is presented the best solution is use one of the commands provided such as <strong>nohup</strong>, because you do not have to install any additional software. But if you are in the same problem use screen, install it and use it. It is amazing.</p>
<p>I have selected the answer of Norman Ramsey as favourite because propose several solutions using commands and <strong>screen</strong>. But please check the other answers specially the one of PEZ, then you get an insight of what screen is able todo.</p>
http://stackoverflow.com/questions/431521/run-a-command-in-a-shell-and-keep-running-the-command-when-you-close-the-session/431523#4315236Answer by Stephen Cox for Run a command in a shell and keep running the command when you close the sessionStephen Cox2009-01-10T18:48:08Z2009-01-10T18:48:08Z<p>What you are looking for is <a href="http://en.wikipedia.org/wiki/Nohup" rel="nofollow">nohup</a>.</p>
<p>See the wiki link for how to use it. </p>
http://stackoverflow.com/questions/431521/run-a-command-in-a-shell-and-keep-running-the-command-when-you-close-the-session/431525#4315259Answer by Carlos Rendon for Run a command in a shell and keep running the command when you close the sessionCarlos Rendon2009-01-10T18:48:49Z2009-01-10T18:48:49Z<p>Try using <a href="http://www.gnu.org/software/screen/" rel="nofollow">GNU Screen</a>. It allows you to have several shells open at once. And you can disconnect from those running shells (i.e. close session with Putty) and they will keep doing their thing.</p>
http://stackoverflow.com/questions/431521/run-a-command-in-a-shell-and-keep-running-the-command-when-you-close-the-session/431530#4315301Answer by Richard for Run a command in a shell and keep running the command when you close the sessionRichard2009-01-10T18:50:52Z2009-01-10T18:50:52Z<p>i agree with the above answers, screen is the way to go. </p>
http://stackoverflow.com/questions/431521/run-a-command-in-a-shell-and-keep-running-the-command-when-you-close-the-session/431539#4315391Answer by Nick Stinemates for Run a command in a shell and keep running the command when you close the sessionNick Stinemates2009-01-10T18:54:47Z2009-01-10T18:54:47Z<pre><code>./command & disown
</code></pre>
http://stackoverflow.com/questions/431521/run-a-command-in-a-shell-and-keep-running-the-command-when-you-close-the-session/431545#43154511Answer by Norman Ramsey for Run a command in a shell and keep running the command when you close the sessionNorman Ramsey2009-01-10T18:58:57Z2009-01-10T18:58:57Z<p><code>nohup</code>, <code>disown</code>, and <code>screen</code> are all good but <code>screen</code> is the best because unlike the other two, <code>screen</code> allows you to disconnect from the remote server, keep everything running, and then reconnect later to see what is happening. With <code>nohup</code> and <code>disown</code> you can't resume interacting.</p>
http://stackoverflow.com/questions/431521/run-a-command-in-a-shell-and-keep-running-the-command-when-you-close-the-session/431559#4315593Answer by Brian Clapper for Run a command in a shell and keep running the command when you close the sessionBrian Clapper2009-01-10T19:13:47Z2009-01-10T19:13:47Z<p>If you can't use <code>screen</code> (because, for instance, your SSH session is being programmatically driven), you can also use <a href="http://www.clapper.org/software/daemonize/" rel="nofollow">daemonize</a> to run the program as a daemon.</p>
http://stackoverflow.com/questions/431521/run-a-command-in-a-shell-and-keep-running-the-command-when-you-close-the-session/431570#43157015Answer by PEZ for Run a command in a shell and keep running the command when you close the sessionPEZ2009-01-10T19:20:09Z2009-01-11T12:01:25Z<p><strong>screen!</strong> It's the best thing since sliced bread. (Yeah, I know others have already suggested it, but it's so good the whole world should join in and suggest it too.)</p>
<p>screen is like, like, ummmm ... like using VNC or the like to connect to a GUI destop, but for command shell windows. You can have several shell "windows" open at once in the same screen session. You can do stuff like:</p>
<ol>
<li>Start a screens session using "screen -dR" (get used to using -dR)</li>
<li>run some commands in one window</li>
<li>press CTRL-A,C to create a new window open a file there in vim</li>
<li>press CTRL-A,0 to go back to the first window and issue some command on the file you just edited</li>
<li>CTRL-A, 1 to go back to your vim session</li>
<li>CTRL-A, C for yet another window and maybe do "sudo - su" (because you just happen to need a full root shell)</li>
<li>CTRL-A, 0 and start a background process </li>
<li>CTRL-A, C to create yet a new window, "tail -f" the log for that background process</li>
<li>CTRL-A, d to disconnect your screen then CTRL-D to disconnect from the server</li>
<li>Go on vacation for three weeks</li>
<li>Log on to the server again and issue "screen -dR" to connect to your existing screen session</li>
<li>check the log in the the fourth window with CTRL-A, 3 (it's like you've been there watching it all the time)</li>
<li>CTRL-A, 1 to pick up that vim session again</li>
<li>I guess you're starting to get the picture now? =)</li>
</ol>
<p>It's like magic. I've been using screen for longer than I can remember and I'm still totally amazed with how bloody great it is.</p>
http://stackoverflow.com/questions/431521/run-a-command-in-a-shell-and-keep-running-the-command-when-you-close-the-session/432369#4323691Answer by olarva for Run a command in a shell and keep running the command when you close the sessionolarva2009-01-11T04:40:35Z2009-01-11T04:40:35Z<p>screen is the best.</p>
<p>Try:</p>
<p>screen -dmS "MyTail" tail -f /var/log/syslog </p>
<p>This start command in background.</p>
<p>Use screen -r to list, and or screen -r Mytail to enter session.</p>
<p>If more users need access same session, use: screen -rx MyTail, and both or more users share the session.</p>
http://stackoverflow.com/questions/431521/run-a-command-in-a-shell-and-keep-running-the-command-when-you-close-the-session/1727374#17273740Answer by joeshmo for Run a command in a shell and keep running the command when you close the sessionjoeshmo2009-11-13T05:51:38Z2009-11-13T05:51:38Z<p>One way that works well for me is <code>at</code>.</p>
<p><code>at</code> works like cron, but for a one-time job. I used it today to download a large file without having to keep my session alive. </p>
<p>for example:</p>
<pre><code>$ at 23:55
at> wget http://file.to.download.com/bigfile.iso
at> ^D
</code></pre>
<p>You pass <code>at</code> a time (in the future) and it gives you a prompt. You enter the commands you want to run at that time and hit ctrl+d. You can exit out of your session and it will run the commands at the specified time.</p>
<p><a href="http://en.wikipedia.org/wiki/At%5F%28Unix%5Fcommand%29" rel="nofollow">Wikipedia</a> has more info on <code>at</code>.</p>