I’ve found that due to some kind of bug in deluge, it keeps terminating, and I’m forced to log into the shell and restart it manually.
I created a cron job to verify that deluge-web and the daemon are running and to start them if they aren’t.
#!/bin/bash export DISPLAY=:0 #needed if you are running a simple gui app. process=deluged makerun="deluged" webrun="deluge-web" if ! [ `ps ax | grep -v grep | grep $process > /dev/null` ] then echo "deluge daemon was not running" deluged & echo "Date: " $(date) " Deluge daemon restarted">> /tmp/deluged.log fi if ! [ `ps ax | grep -v grep | grep $webrun > /dev/null` ] then echo "deluge-web was not running" $webrun & echo "Date: " $(date) " Deluge web service restarted">> /tmp/deluged.log fi exit
Joel G Mathew, known in tech circles by the pseudonym Droidzone, is an opensource and programming enthusiast.
He is a full stack developer, whose favorite languages are currently Python and Vue.js. He is also fluent in Javascript, Flutter/Dart, Perl, PHP, SQL, C and bash shell scripting. He loves Linux, and can often be found tinkering with linux kernel code, and source code for GNU applications. He used to be an active developer on XDA forums, and his tinkered ROMS used to be very popular in the early 2000s.
His favorite pastime is grappling with GNU compilers, discovering newer Linux secrets, writing scripts, hacking roms, and programs (nothing illegal), reading, blogging. and testing out the latest gadgets.
When away from the tech world, Dr Joel G. Mathew is a practising ENT Surgeon, busy with surgeries and clinical practise.