5

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)?

TWA
  • 12,756
  • 13
  • 56
  • 92

2 Answers2

2

You may take a look at this thread.

Community
  • 1
  • 1
Darin Dimitrov
  • 1,023,142
  • 271
  • 3,287
  • 2,928
2

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

MiffTheFox
  • 21,302
  • 14
  • 69
  • 94