version 4 on raspberry pi

Ask for help and report issues not specific to either the Mac OS X or GTK+ versions of Transmission
Post Reply
francescob
Posts: 6
Joined: Thu Dec 10, 2009 3:48 pm

version 4 on raspberry pi

Post by francescob »

anyone has instructions on how to update transmission-daemon to version 4 on raspberry? Thank you in advance
derinus
Posts: 1
Joined: Sun Oct 29, 2023 7:44 pm

Re: version 4 on raspberry pi

Post by derinus »

I just installed 4.0.2 on my raspberry pi 4.
I run Raspberry Pi OS (Bookworm 64-bit) and it works great.

TLDR:

Code: Select all

wget http://launchpadlibrarian.net/664883838/transmission-common_4.0.2-1ubuntu3_arm64.deb
wget http://launchpadlibrarian.net/664883844/transmission-daemon_4.0.2-1ubuntu3_arm64.deb
apt install ./transmission-common_4.0.2-1ubuntu3_arm64.deb
apt install ./transmission-daemon_4.0.2-1ubuntu3_arm64.deb
If you are getting the following warning when trying to install you are running Bullseye or older and need to update the OS first:

Code: Select all

Depends: transmission-common (= 4.0.2-1ubuntu3) but 3.00-1 is to be installed
Depends: libc6 (>= 2.34) but 2.31-13+rpt2+rpi1+deb11u7 is to be installed
Depends: libssl3 (>= 3.0.0) but it is not installable
Depends: libstdc++6 (>= 12) but 10.2.1-6 is to be installed
You can check which version you have by typing:

Code: Select all

cat /etc/debian_version
It should be at least version 12

Find out if you are running 64-bit by typing:

Code: Select all

name -a
If should have "aarch64" in the output line if it read "armhf" you've got the 32-bit OS and need different packages.

I was running Transmission as a daemon only the web interface (no GUI) so only needed to install 2 packages:
`transmission-common` and `transmission-daemon`

ARM 64-bit
https://launchpad.net/ubuntu/mantic/arm ... 2-1ubuntu3
https://launchpad.net/ubuntu/mantic/arm ... 2-1ubuntu3

ARM 32-bit
https://launchpad.net/ubuntu/mantic/arm ... 2-1ubuntu3
https://launchpad.net/ubuntu/mantic/arm ... 2-1ubuntu3

I haven't trying the 32-bit version and I don't know who uploaded / maintained the packages on Launchpad.
Post Reply