Re: Launching background app... running after logout
Re: Launching background app... running after logout
- Subject: Re: Launching background app... running after logout
- From: Viktor Lidholt <email@hidden>
- Date: Thu, 26 Jul 2001 00:36:01 +0200
Yes, just use the nohup unix command.
For instance:
nohup runserver &
That's what the command would look like from the command prompt. I'm not
sure if you would be able to do any GUI stuff using it, but for instance
running a server would work fine.
/ Viktor
>Is it possible to write an application that doesn't get quit on a
>logout? Basically, I want to write an app which is run by a user who is
>logged in, however doesn't get quit when the user logs out. Is there
>any way to do this?
>
>- Ryan