On 6/25/07, oim <[EMAIL PROTECTED]> wrote:
Hello!

I have a question about this situation.

In home work Pc with FreeBSD Server, real ip and real domain name.
When i remote connect ssh2 (consose) from my work.. make on server some.. 
compile program from ports

And some time later i need to close console, but i want, what session not close 
and compile processing.

If i disconect from console all job stop. How disconect from console and come 
back to my session?


Hi,

The most simplest solution to your problem is to `disown' the process.

For eg:

$ some_process &
$ disown

And if you are using zsh there it is much easier:

$ some_process &!

And when you exit, the processes will not be killed.

Regards,
sac.
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to