If you run a command from the shell terminal, and you realise that it is going to run a while, you can put it into the background
first
ctrl-z
which suspends it, then
bg
which starts it running in background, then
disown -h
which detaches the job from your session, this is important as if you exit the session, without this, the job will die too
Leave a Reply