I need to run script, that takes long time to execute, or I just want it to run forever. I can't just SSH to my machine, because when I disconnect it stops running.
Is there any way to run script that isn't dependent on the shell that started it?
I'm using Ubuntu 9.04.
You can run the command with the nohup command before it. You can also run it in 'screen', which will allow you reattach the terminal.
For example:
Or just ssh into and run the nohup command. It should keep running even when you disconnect. This is because the nohup will intercept the SIGHUP singal (hangup).
Screen is a bit more involved, but for the 20 minutes it might take you to learn the basics, it is one of the most useful tools out there. Here is a tutorial.
I always just use nohup. If I care about the output, I redirect it to a log file, otherwise I send it to /dev/null.
Example:
That puts it in the background, with output going to /dev/null, and it is immune to the HUP signal if you log out. You can also "disown" the job with certain shells (like bash) so that it's not connected to your session.
To install screen :
apt-get install screen
Then launch using simply :
screen
And
man screen
to get the key binding.While you are logged into a server, you can run a script in detached mode by the following command:
Later when you log in again, you can check script.out for any output, and script.err for any error messages. If you want output and error messages in the same file, then do:
Trivia: The command name
nohup
comes from "hang-up," as in hanging up the (of course, "black, rotary-dial" ...) phone on your 110-baud Teletype machine after removing the headset from its squishy holder. Usually, when Unix detects that you "hung up," it sends aSIGHUP
signal to the process.If you want something you can run non-interactively from the client, try this:
For example:
Note however that if you don't redirect the output to files then the ssh invocation won't finish until the command does.