7 Mar
2002
7 Mar
'02
4:41 p.m.
On Thu, 2002-03-07 at 15:49, Mike Renfro wrote:
Two safe solutions:
- Redirect *all* standard output and standard error text into a file, or into /dev/null -- something line './start 2>&1 > /somefile &'
- Run your Zope script inside a 'screen' session. See http://www.linuxgazette.com/issue32/tag_detach.html for some details on this program.
Or: - Use the nohup command, e.g. 'nohup ./start'