My RPi runs OSMC with SickRage, CouchPotato and Transmission-daemon.
I have been using transmission-daemon for sometime and it works great. Recently I had some I/O trouble with a big torrent and decided to install another BitTorrent client on the box – just in case.
I tried to look around but couldn’t get any other known torrent clients installed on the ARM box (absence of the binaries you can say). There are ways to get x86 utorrent binary installed on RPi but I didn’t want to go that far.
#Install the required packages sudo apt-get install deluged deluge-web #Set your auth credentials sudo echo "osmc:osmc:10" >> /var/lib/deluged/config/auth #Change various settings, seed-ratio; download directory etc sudo vi /var/lib/deluged/config/core.conf #restart the service to take effect sudo service deluged restart #check out if the service started OK stty cols 2000 sudo service deluged status -l #Create the web ui service sudo vi /etc/systemd/system/deluge-web.service
[Unit] Description=Deluge Bittorrent Client Web Interface After=network-online.target [Service] Type=simple User=osmc Group=osmc UMask=027 ExecStart=/usr/bin/deluge-web Restart=on-failure [Install] WantedBy=multi-user.target
#Set the service to start upon system startup sudo systemctl enable deluge-web.service #Now start the service for the first time. sudo service deluge-web restart sudo systemctl start deluge-web
#Go to URL
http://<<RPi URL>>:8112/
#Enter the default password:
“deluge”
#Set a new password.
#Connection Manager:
Add:
localhost
58846
osmc
osmc
That’s all folks!