Newest release not visible from apt

General support for problems installing or using Deluge
Post Reply
vol1
New User
New User
Posts: 1
Joined: Tue Jan 24, 2023 11:49 am

Newest release not visible from apt

Post by vol1 »

Hi all,

I'm quite newbie in linux/raspberry pi and seeking for explanation in my subject.

I saw on main page that the newest release is 2.1.1 but when I execute sudo apt update/upgrade for deluge I see only version 2.0.3

Code: Select all

Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
deluge-console is already the newest version (2.0.3-3.1).
deluge-web is already the newest version (2.0.3-3.1).
deluged is already the newest version (2.0.3-3.1).
So here is my question: "something" is not update in raspbian repository/packages server/whatever or for raspberry pi / raspbian distro the newest supported version is 2.0.3 or something else which I still don't know?

Thank for any help
Tim50stroud
New User
New User
Posts: 5
Joined: Sun Oct 08, 2023 2:05 pm

Re: Newest release not visible from apt

Post by Tim50stroud »

I too am a newbie to raspberryi and am experiencing the same problem and the same message re- version 2.0.3 being installed.
Really would appreciate a comment or suggestion to install the latest version
Thanks in advance
shinger
Leecher
Leecher
Posts: 83
Joined: Sat Jun 05, 2010 1:02 pm

Re: Newest release not visible from apt

Post by shinger »

Hi Guys,

I am not sure what OS you are using. Can both of you do the next command in the terminal and give the output?

Code: Select all

cat /etc/os-release 
It will look something like this.

Code: Select all

<user>@<system>:~$ cat /etc/os-release 
PRETTY_NAME="Ubuntu 22.04.3 LTS"
NAME="Ubuntu"
VERSION_ID="22.04"
VERSION="22.04.3 LTS (Jammy Jellyfish)"
VERSION_CODENAME=jammy
ID=ubuntu
ID_LIKE=debian
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
UBUNTU_CODENAME=jammy
If you are using Ubuntu follow this.

If you do a

Code: Select all

sudo apt policy deluged
There you will see what kind of repositories there are. A repository is you could say like a "store". One repository can have a different version of your software (older or newer version). In the Ubuntu repository you see version 2.0.3, while the "other" repository you see version 2.1.1. Canonical (company behind Ubuntu) has been shipping Deluge version 2.0.3 until Ubuntu 23.04. So there is big possibility you are using one of those Ubuntu versions (just like me).

It will look something like this.

Code: Select all

<USER>@<SYSTEM>:~$ apt policy deluged
deluged:
  Installed: 2.1.1-0~202207101304~ubuntu22.04.1
  Candidate: 2.1.1-0~202207101304~ubuntu22.04.1
  Version table:
 *** 2.1.1-0~202207101304~ubuntu22.04.1 500
        500 https://ppa.launchpadcontent.net/deluge-team/stable/ubuntu jammy/main arm64 Packages
        100 /var/lib/dpkg/status
     2.0.3-3.1 500
        500 http://ports.ubuntu.com/ubuntu-ports jammy/universe arm64 Packages
To get the new Deluge version, you could just try to install the other repository (Ubuntu PPA - Personal Package Archive). Which guys of the Deluge team use.

https://dev.deluge-torrent.org/wiki/Ins ... nux/Ubuntu
===============================================================
Server: Rock 5B 8 Cores (ARM), 16 GB RAM, 2 TB 970 Evo +
OS: Linux Ubuntu 22.04 LTS
Deluge: v2.1.1
Plugins: Blocklist, LabelPlus, ItConfig, MyScheduler, Stats, Notifications, YaRSS2
User avatar
ambipro
Moderator
Moderator
Posts: 417
Joined: Thu May 19, 2022 3:33 am
Contact:

Re: Newest release not visible from apt

Post by ambipro »

Currently I'm not aware of any repositories outside of Deluge's that has 2.1.1 on stable branch, most are still on 2.0.3-4 for whatever reason (ubuntu/Debian/etc)

If you go to the support page and click on Linux under installing, https://dev.deluge-torrent.org/wiki/Installing/Linux, it offers you Debian and Ubuntu instructions for getting the latest from the PPA.

Since you are using apt, though, you can try the following.

Code: Select all

sudo add-apt-repository ppa:deluge-team/stable
sudo apt-get update
sudo apt-get install deluge
shinger
Leecher
Leecher
Posts: 83
Joined: Sat Jun 05, 2010 1:02 pm

Re: Newest release not visible from apt

Post by shinger »

ambipro wrote: Fri Oct 13, 2023 10:05 am Currently I'm not aware of any repositories outside of Deluge's that has 2.1.1 on stable branch, most are still on 2.0.3-4 for whatever reason (ubuntu/Debian/etc)

If you go to the support page and click on Linux under installing, https://dev.deluge-torrent.org/wiki/Installing/Linux, it offers you Debian and Ubuntu instructions for getting the latest from the PPA.

Since you are using apt, though, you can try the following.

Code: Select all

sudo add-apt-repository ppa:deluge-team/stable
sudo apt-get update
sudo apt-get install deluge
Only Ubuntu 23.10 (released today) has the latest version of Deluge with it.

https://packages.ubuntu.com/search?keywords=deluge
===============================================================
Server: Rock 5B 8 Cores (ARM), 16 GB RAM, 2 TB 970 Evo +
OS: Linux Ubuntu 22.04 LTS
Deluge: v2.1.1
Plugins: Blocklist, LabelPlus, ItConfig, MyScheduler, Stats, Notifications, YaRSS2
Tim50stroud
New User
New User
Posts: 5
Joined: Sun Oct 08, 2023 2:05 pm

Re: Newest release not visible from apt

Post by Tim50stroud »

Many thanks; I'll go through these asap
Tim50stroud
New User
New User
Posts: 5
Joined: Sun Oct 08, 2023 2:05 pm

Re: Newest release not visible from apt

Post by Tim50stroud »

Responding to the comments above; my OS details

pi@raspberrypi:~ $ cat /etc/os-release
PRETTY_NAME="Raspbian GNU/Linux 11 (bullseye)"
NAME="Raspbian GNU/Linux"
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
ID=raspbian
ID_LIKE=debian
HOME_URL="http://www.raspbian.org/"
SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"
pi@raspberrypi:~ $
Tim50stroud
New User
New User
Posts: 5
Joined: Sun Oct 08, 2023 2:05 pm

Re: Newest release not visible from apt

Post by Tim50stroud »

The deluge information

pi@raspberrypi:~ $ sudo apt policy deluged
deluged:
Installed: 2.0.3-3.1
Candidate: 2.0.3-3.1
Version table:
*** 2.0.3-3.1 500
500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
100 /var/lib/dpkg/status
pi@raspberrypi:~ $
Tim50stroud
New User
New User
Posts: 5
Joined: Sun Oct 08, 2023 2:05 pm

Re: Newest release not visible from apt

Post by Tim50stroud »

ambipro wrote: Fri Oct 13, 2023 10:05 am Currently I'm not aware of any repositories outside of Deluge's that has 2.1.1 on stable branch, most are still on 2.0.3-4 for whatever reason (ubuntu/Debian/etc)
I'm a bit wary of installing a Debian version, though my OS is derived from that. Perhaps the best thing is I post on the rasberry Pi support forum
shinger
Leecher
Leecher
Posts: 83
Joined: Sat Jun 05, 2010 1:02 pm

Re: Newest release not visible from apt

Post by shinger »

I guess you have it already running and don't want to experiment with it.

If you do want to experiment with it, you could just download the deb files and manually install them even though they are meant for a later version. I have done this in the past and as long as the dependencies are not becoming a problem i had no problems. If they are a problem, you could just remove Deluge and reinstall the version that was coming by default with it.

Let me know if you want to experiment then i can help you with it :).
===============================================================
Server: Rock 5B 8 Cores (ARM), 16 GB RAM, 2 TB 970 Evo +
OS: Linux Ubuntu 22.04 LTS
Deluge: v2.1.1
Plugins: Blocklist, LabelPlus, ItConfig, MyScheduler, Stats, Notifications, YaRSS2
Post Reply