Server Version#: Version 1.42.1.10060
Player Version#: Version 4.147.1
Before I upgrade the system that is running plex media server, I just wanted to check to be sure that Debian 13 (just released) is supported. Can someone confirm please?
No need to wait. The “issue” mentioned just means plex will need to update their apt repository within a year. It functions perfectly fine with no need to wait to upgrade.
I’ve been running Plex on Debian sid/unstable for over a decade with little to no problems. As longs as you’re comfortable handling common Linux issues, you should be fine.
Signing key on CD665CBA0E2F88B7373F7CB997203C7B3ADCA79D is not bound:
No binding signature at time 2025-09-22T18:33:03Z
because: Policy rejected non-revocation signature (PositiveCertification) requiring second pre-image resistance because: SHA1 is not considered secure since 2026-02-01T00:00:00Z
The DEB package has supported GPG signing for quite some time.
(Yes I know the backend from the build system isn’t complete which is being moved to a new platform and worked on since November)
The DEB package code
# Switch repo definition to using the GPG key if not already done.
HostArch="$(dpkg --print-architecture)"
wget -q -O - https://downloads.plex.tv/plex-keys/PlexSign.key | gpg --yes --dearmor -o /usr/share/keyrings/plexmediaserver.gpg
Result=$?
if [ $Result -eq 0 ]; then
sed -i -e "s+deb https://downloads.plex.tv+deb [arch=$HostArch signed-by=/usr/share/keyrings/plexmediaserver.gpg] https://downloads.plex.tv+" \
/etc/apt/sources.list.d/plexmediaserver.list
else
Output "WARNING: Unable to install Plex GPG signing key in /usr/share/keyrings/plexmediaserver.gpg"
Warnings=$((Warnings + 1))
fi
# Output final message
if [ $Fail -eq 0 ]; then
Output "$PMSver - Installation successful. Errors: $Errors, Warnings: $Warnings"
exit 0
else
Output "$PMSver - Installation failed. Errors: $Errors, Warnings: $Warnings"
Output "Additional assistance and support is available in our forums."
exit 1
fi
FWIW: It is pretty easy to direct-download the .deb using the link in the web console using <curl | wget | elinks | lynx | whatever> and then dpkg -i newPlexMediaServerPackage.deb.
I prefer to stick with the public release version and eschew betas though so YMMV if hot-new-features are important to you. The public release version comes out a handful of times per year…or few enough that I can’t even tell you how often my hands touch keys.
New repo looks ready but needs final testing with updated packaging.
Updated packaging (final details) for new key and repo discussed at length so everyone is onboard.
– A few mods to existing package scripts for the new key
– A few other mods to improve cleaning up old key(s) if package uninstalled.
The scripting changes will happen tomorrow and we’ll start testing to confirm they are ready (both DEB and RPM)
I’m not on the build team but am involved with this.