Create a Python Daemon - Programming On Unix
Users browsing this thread: 2 Guest(s)
|
|||
A daemon is a program that runs in the background independently of any shells, terminal.
There's many way to create daemons but I'll show you the way I use. Here is the script: [Python daemon Script](http://paste.unixhub.net/index.php/Eu8) usage python2 pythondaemon.py scripttoberunasdaemon.py args make sure that the script doesn't ask for user inputs but for system argv This should fork the script and make it work as a daemon. See ya! |
|||
Messages In This Thread |
Create a Python Daemon - by venam - 07-09-2012, 06:24 AM
RE: Create a Python Daemon - by deadgone - 07-09-2012, 08:47 AM
|