I’ve been searching for some time and have not found much information on starting and stopping nzbdrone from the command line in linux/debian. According to the install instructions you can start nzbdrone with:
mono /opt/NzbDrone/NzbDrone.exe
but this will initiate the program in terminal. Generally, when I want to start something in the background I append the &, like:
mono /opt/NzbDrone/NzbDrone.exe &
But, even with this, nzbdrone still echos out commands to the terminal, even though it is technically running in the background. Can anyone think of ANY way to start this program in the background (and also how to stop it). I don’t really want this to start at boot, but, as of yet, it is the only solution I’ve found to start in the background (i.e. using start-stop-daemon). Thanks.