Re: Unable to disown process

2011-07-06 Thread Andrew DeFaria
On 7/6/2011 2:01 PM, Andy Koppe wrote: On 6 July 2011 21:15, Andrew wrote: On 7/6/2011 12:12 PM, Andy Koppe wrote: You can use the 'setsid' utility from the util-linux package to invoke a program in its own session, i.e. without connection to the terminal it is invoked from. For example: setsi

Re: Unable to disown process

2011-07-06 Thread Andy Koppe
On 6 July 2011 21:15, Andrew wrote: > On 7/6/2011 12:12 PM, Andy Koppe wrote: >> You can use the 'setsid' utility from the util-linux package to invoke >> a program in its own session, i.e. without connection to the terminal >> it is invoked from. For example: >> >> setsid ssh -NL 1119:news.mozilla

Re: Unable to disown process

2011-07-06 Thread Andrew DeFaria
On 7/6/2011 12:12 PM, Andy Koppe wrote: On 6 July 2011 18:24, Andrew DeFaria wrote: I have the following script that I use to tunnel nntp traffic: #!/bin/bash nohup ssh -NL 1119:news.mozilla.org:119 \ -L 2119:news.gmane.org:119 \ -L 3119:nntp.perl.org:119 \ and...@

Re: Unable to disown process

2011-07-06 Thread Andy Koppe
On 6 July 2011 18:24, Andrew DeFaria wrote: > I have the following script that I use to tunnel nntp traffic: > >   #!/bin/bash >   nohup ssh -NL 1119:news.mozilla.org:119 \ >         -L 2119:news.gmane.org:119 \ >         -L 3119:nntp.perl.org:119 \ >      and...@defaria.com > /dev/null 2>&1 & > >

Unable to disown process

2011-07-06 Thread Andrew DeFaria
I have the following script that I use to tunnel nntp traffic: #!/bin/bash nohup ssh -NL 1119:news.mozilla.org:119 \ -L 2119:news.gmane.org:119 \ -L 3119:nntp.perl.org:119 \ and...@defaria.com > /dev/null 2>&1 & disown If I run this script it works fine and I'm