I never know when's the best time to use nohup and the & at the end of the command.
|
feedback
|
|
Nohup makes a program ignore the HUP signal, allowing it to run after current terminal is closed / user logged out. Nohup does not send program to background. | ||||
|
feedback
|
|
Typically I use
When working over a VPN or a dodgy remote connection, I tend to use
It's also used when a developer doesn't properly daemonize a service, so you have to use
If you happen to forget to use
It's pretty rare to use | |||||||
feedback
|
|
nohup: logout current user,the process will not stop &: with this symbol,there will be no output in current terminal, the process running background | |||||
feedback
|