> How can i left proccess running in my LEAF (Bering) Box after > logout a ssh sesion? > in linux exist a NOARCH command but , what can i do in LEAF, how > can i install that command on LEAF?
You have to detach everything from you tty, i.e. stdin, stdout and stderr and start a background process: Example: command </dev/null >cmd.stdout 2>cmd.stderr & Some commands can run in daemon mode where they detach themselves from the current tty automatically. HTH Alex ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ------------------------------------------------------------------------ leaf-user mailing list: [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/leaf-user SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html
