sinaptika wrote:Install Deluge 1.3.15 on Rasspberry Pi 3b (Raspbian Stretch):
1.
Add Deluge PPA:
Code: Select all
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 249AD24C
sudo echo "deb http://ppa.launchpad.net/deluge-team/ppa/ubuntu xenial main" >> /etc/apt/sources.list.d/deluge.list
sudo echo "deb http://archive.raspbian.org/raspbian jessie main contrib non-free rpi firmware" >> /etc/apt/sources.list.d/deluge.list
2.
Install libtorrent-rasterbar 1.0.11 and deluged, deluge web and deluge-console (1.3.15)
Code: Select all
sudo apt update
sudo apt install -t jessie libssl1.0.0
sudo apt install -t xenial libtorrent-rasterbar8
sudo apt install -t xenial deluged deluge-web deluge-console
I had an error with your first line of code:
Code: Select all
Executing: /tmp/apt-key-gpghome.5izc0TRXmu/gpg.1.sh --keyserver keyserver.ubuntu.com --recv-keys 249AD24C
gpg: failed to start the dirmngr '/usr/bin/dirmngr': No such file or directory
gpg: connecting dirmngr at '/tmp/apt-key-gpghome.5izc0TRXmu/S.dirmngr' failed: No such file or directory
gpg: keyserver receive failed: No dirmngr
So I first had to install dirmngr to make it work
The two lines of code afterwards also returned an error:
Code: Select all
-bash: /etc/apt/sources.list.d/deluge.list: Permission denied
This is because everything after the >> is not in sudo anymore. One workaround would be to make the file manually. The other is to use this code instead (
source):
Code: Select all
sudo su -c "echo 'deb http://ppa.launchpad.net/deluge-team/ppa/ubuntu xenial main' >> /etc/apt/sources.list.d/deluge.list"
sudo su -c "echo 'deb http://archive.raspbian.org/raspbian jessie main contrib non-free rpi firmware' >> /etc/apt/sources.list.d/deluge.list"
Everything works afterwards. Thank you for the instructions, after hours of trying my issue is finally fixed!
These things are probably trivial to most, but I hope noobies like me will find this helpful.