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.

How do I put an already-running process under nohup?

I have a process that is already running for a long time and don't want to end it. How do …

shell nohup
How to get the process ID to kill a nohup process?

I'm running a nohup process on the server. When I try to kill it my putty console closes instead. this …

linux bash grep nohup
Can I change the name of `nohup.out`?

When I run nohup some_command &, the output goes to nohup.out; man nohup says to look at info …

bash logging nohup
What's the difference between nohup and ampersand

Both nohup myprocess.out & or myprocess.out & set myprocess.out to run in the background. After I shutdown …

linux bash nohup
How to get a list of programs running with nohup

I am accessing a server running CentOS (linux distribution) with an SSH connection. Since I can't always stay logged in, …

linux shell centos nohup
How to kill a nohup process?

I executed the following command $ nohup ./tests.run.pl 0 & now when I try to kill it (and the executions …

bash process kill nohup
What's the nohup on Windows?

I want to run a Java jar file like this: java -jar spider.jar How to run it on the …

windows nohup
Nohup is not writing log to output file

I am using the following command to run a python script in the background: nohup ./cmd.py > cmd.log &…

python nohup
Use SSH to start a background process on a remote server, and exit session

I am using SSH to start a background process on a remote server. This is what I have at the …

linux ssh remote-server nohup
How can I see the output console after running a nohup command?

I have a code running on a Linux server. Since it takes hours to run, I have to use nohup …

linux terminal nohup