is it possible to alter some setting in CentOS so that nohup
isn't necessary? i.e. so that my scripts won't be killed when I log off?
I think that the automatic output of text to nohup.out is mangling the output of a parallel job, i.e. output from multiple threads is getting mixed together, making the script useless.
On Ubuntu, this is the default behavior.
tmux
or GNUscreen
? – Kusalananda Dec 16 '19 at 17:14nohup.out
. You can redirect the output to a different file:nohup cmd > FILE
. – NickD Dec 16 '19 at 17:40