Linux Mono Equivalent of .NET Windows Service [duplicate]
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 开发者_JAVA百科in, etc)?
You may take a look at this thread.
You'll have to register your software as a daemon by writing a script to go into init.d.
精彩评论