Note: The archives category content is an automatically generated focus channel and does not neccessarily reflect the opinions of this blog. No responsibility is taken for the external links presented here, follow at your own discretion.
The archives content is never scraped from sites - but an abstract obtained from search engines.
| Problem |
Solution |
Example |
Reference |
Recommended |
If you start a process with nohop (ignore the hup signal), it will not exit (usually) when your shell is exited. nohup stands for no hang up, a throw back to terminal lines.
|
|
| Problem |
Solution |
Example |
Reference |
Recommended |
nohup command > /tmp/logfile.log 2>&1& If you forget to run the command with nohup, this can now be simulated on solaris. Just background the process (with ctrl Z and bg) then type disown. disown [%1] The UNIX command jobs will show all backgrounded jobs. After running disown, it should show no jobs in the background.
|
Leave a Reply