I've got an init.d
script which I want it to work in the background, even when I quit from the terminal. However I've tried making it run in the background with nohup
but had "no hope", because when I quit, by looking at the pstree
I can see the PID disappears and thus nohup
stops working.
Q: Is there another apart from nohup
way of pushing a script that works in the foreground to the background, even after you quit the terminal?
Ok, so there are several options:
disown
You can combine
disown
and&
to push your script to the background[your_script]
can be checked by thejobs
command. Once typed you will see:And the killing can be done by
kill %1
, the1
refers to the job number seen above. This is the better alternative tonohup
as it does not leave thenohup.out
files littered all over the file system.screen
Is a "virtual" terminal which you can run from a "real" terminal (actually all terminals today are "virtual" but that is another topic for another day).
Screen
will keep running even if your ssh session gets disconnected. Any process which you start in ascreen
session will keep running with that screen session. When you reconnect to the server you can reconnect to the screen session and everything will be as if nothing happened, other than the time which passed.Excellent source: Speaking UNIX: Stayin' alive with Screen".
I cannot perfectly understand your problem but...
In my case, I use
screen
for such long running background jobs. It provide virtual terminal, which is attachable/dettachable anytime. So I can logout from original session without closing the virtual session, and get that session back anytime I want.anyway, this is not for init.d style scripts.
Use
&
after your command in script like :I have to run a long running command (rsync) via SSH (on a QNAP nas). That machine does not have nohup nor screen installed. I would like to be able to run the command without the need to keep my laptop with the ssh client running all the time. The answers suggested here with background or ampersand (&) simply do not work. People might not be aware that nohup actually shields the process for the SIGINT and SIGTERM interrupts. So without nohup I end up with the following error whenever I disconnect my ssh session:
So in my case setsid helped instead of nohup.
You need to: