views:

167

answers:

2

I have a .NET Windows service that I would like to port to Mono on Linux.

What would be the proper way to install the service on Linux so that it works like a Windows service (i.e. autostart, runs when no users are logged in, etc)?

+1  A: 

You may take a look at this thread.

Darin Dimitrov
+1  A: 

You'll have to register your software as a daemon by writing a script to go into init.d.

MiffTheFox