2025-07-11, 02:04 PM
It seems I finally managed to solve the issue, for reason I don't get I had a foreign architecture installed with dpkg (arm64) and it seems that apt was seing two architecture and was trying to fetch the wrong one. Here's the ouput of my apt config :
pt-cache policy jellyfin jellyfin-server jellyfin-ffmpeg7 | head -20
jellyfin:
Installed: (none)
Candidate: 10.10.7+ubu2404
Version table:
10.10.7+ubu2404 500
500 https://repo.jellyfin.org/ubuntu noble/main arm64 Packages
10.10.6+ubu2404 500
500 https://repo.jellyfin.org/ubuntu noble/main arm64 Packages
10.9.10+ubu2404 500
500 https://repo.jellyfin.org/ubuntu noble/main arm64 Packages
jellyfin-server:
Installed: (none)
Candidate: (none)
Version table:
10.10.7+ubu2004 -1
100 /var/lib/dpkg/status
jellyfin-ffmpeg7:
Installed: (none)
Candidate: (none)
Version table:
I ran this :
dpkg --print-foreign-architectures
sudo dpkg --remove-architecture arm64
sudo sed -i 's/^Architectures:.*/Architectures: amd64/' \
/etc/apt/sources.list.d/jellyfin.sources
sudo dpkg --purge jellyfin jellyfin-server jellyfin-web \
jellyfin-ffmpeg5 jellyfin-ffmpeg6 jellyfin-ffmpeg7
sudo rm -rf /var/lib/apt/lists/*jellyfin*
sudo apt update
sudo apt install jellyfin-ffmpeg7 jellyfin-server jellyfin-web
And it seems to be fixed now, I'm not sure what caused the issue in the first place
pt-cache policy jellyfin jellyfin-server jellyfin-ffmpeg7 | head -20
jellyfin:
Installed: (none)
Candidate: 10.10.7+ubu2404
Version table:
10.10.7+ubu2404 500
500 https://repo.jellyfin.org/ubuntu noble/main arm64 Packages
10.10.6+ubu2404 500
500 https://repo.jellyfin.org/ubuntu noble/main arm64 Packages
10.9.10+ubu2404 500
500 https://repo.jellyfin.org/ubuntu noble/main arm64 Packages
jellyfin-server:
Installed: (none)
Candidate: (none)
Version table:
10.10.7+ubu2004 -1
100 /var/lib/dpkg/status
jellyfin-ffmpeg7:
Installed: (none)
Candidate: (none)
Version table:
I ran this :
dpkg --print-foreign-architectures
sudo dpkg --remove-architecture arm64
sudo sed -i 's/^Architectures:.*/Architectures: amd64/' \
/etc/apt/sources.list.d/jellyfin.sources
sudo dpkg --purge jellyfin jellyfin-server jellyfin-web \
jellyfin-ffmpeg5 jellyfin-ffmpeg6 jellyfin-ffmpeg7
sudo rm -rf /var/lib/apt/lists/*jellyfin*
sudo apt update
sudo apt install jellyfin-ffmpeg7 jellyfin-server jellyfin-web
And it seems to be fixed now, I'm not sure what caused the issue in the first place