Top "Nohup" questions

nohup is a POSIX command to ignore the HUP (hangup) signal, enabling the command to keep running after the user who issues the command has logged out.

Getting sudo and nohup to work together

Linux newbie here. I have a perl script which takes two command line inputs. I tried to run it in …

linux sudo nohup
how to run a command in background using ssh and detach the session

I'm currently trying to ssh into a remote machine and run a script, then leave the node with the script …

shell ssh nohup
Find the Process run by nohup command

I run a server executable in Centos using the following command "nohup server &". Now I need to kill the …

linux process background ps nohup
How to include nohup inside a bash script?

I have a large script called mandacalc which I want to always run with the nohup command. If I call …

bash shell unix nohup
nohup error no such file or directory

I am trying to run a string of nohup commands to get server statistics. However I get an error of …

linux shell unix nohup
Run a program from python, and have it continue to run after the script is killed

I've tried running things like this: subprocess.Popen(['nohup', 'my_command'], stdout=open('/dev/null', 'w'), stderr=open('logfile.…

python subprocess nohup
is it possible to use variables in remote ssh command?

I'd like to execute several commands in sequence on a remote machine, and some of the later commands depend on …

shell ssh variable-assignment nohup
Run a java program in backend

Hi all i want to run a java application as backend process.that is like tomcat server.For that i …

java linux background nohup
Why can't I use Unix Nohup with Bash For-loop?

For example this line fails: $ nohup for i in mydir/*.fasta; do ./myscript.sh "$i"; done > output.txt& …

linux bash unix nohup
How can I see what processes are running on a remote ubuntu server and kill them?

I started some processes with nohup and they aren't working correctly so I need to find and kill them but …

ssh nohup