views:

91

answers:

2

Hi!

I'm trying to setup a Python application that should automatically start when Linux boots. It should also start (unless not already running) if the computer resumes from standby mode - which is mainly the problem.

Does anybody know where to integrate these requirements?

Thanks, Marius

A: 

Configure a cron job every minute to detect if application running - if not start.

mryan
+1  A: 

If you want to guarantee it's always running, have a look at man inittab.

Gaius