Consider the following nohup
execution:
nohup script.sh > script.out &
Is there a way to log off the terminal, reconnect, bring the process back to foreground and interact with it using the keyboard?
Consider the following nohup
execution:
nohup script.sh > script.out &
Is there a way to log off the terminal, reconnect, bring the process back to foreground and interact with it using the keyboard?
nohup does not disconnect a command from terminal, it makes your script ignore
SIGHUP
, and redirectsstdout/stderr
to a filenohup.out
, so that the command can continue running in the background after you log out.nohup
does not automatically put the command it runs in the background. One must do that explicitly, by ending the command line with an&
.jobs
can print currently running jobs and their status. If the commandjobs
cannot find it, then it is no longer a child process of that shell.One can be bring back a background job to foreground in bash using
fg
even if it is run withnohup
. But that won't change the output redirection, which will still be going to the filenohup.out
.If you close the shell/terminal or log off, your command is no longer a child of that shell. It belongs to
init
process. If you search inpstree
you'll see it is now owned by process 1 (init
). That cannot be brought back to the foreground because the foreground no longer exists.If you wanted to start a script, have it run without the output bothering your terminal and then bring it up later to interact with it, you might want to take a look at a terminal multiplexer. Depending on your system I would recommend
tmux
orscreen
. You can find some info on how to use them in the links below:tmux:
screen:
edit: added links for tmux primers
I'll second the use of a terminal multiplexer, but tmux, not screen. Screen is, for all intents and purposes, unmaintained. Its configuration is a dark art, likely first recorded in an appendix of the Necronomicon. Attempting to write your own config is as a glimpse of Cthulu. Seriously. Look around at people's .screenrc files. To be sure, there are ways to mediate screen's abomination of a config flle. Byobu does an admirable job as the veil between mortal users and unholy code. It comes with sensible colours, a menu interface, and perhaps most importantly, a status bar.
But as I said, I recommend tmux instead. It still requires some minor configuration, but it is well documented, and your config file won't look like gibberish. Also, you start out with colours and a status bar. Compare my screenrc and tmux.conf files:
If you are just interested in looking live hat the output this might suit you:
Any Linux command can be sent to the background with '
&
' appended at the last.To view all the background jobs, you can issue
jobs
Here I am running 3 jobs in background: zookeeper, kafka and mongo daemon. [1],[2] and [3] are respective job numbers for these tasks.
You can bring those task to foreground using
fg %$taskNumber.