Having just followed the process as described here and summarised as follows:
sudo apt install apt-transport-https wget -O - https://repo.jellyfin.org/jellyfin_team.gpg.key | sudo apt-key add - echo "deb [arch=$( dpkg --print-architecture )] https://repo.jellyfin.org/$( awk -F'=' '/^ID=/{ print $NF }' /etc/os-release ) $( awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release ) main" | sudo tee /etc/apt/sources.list.d/jellyfin.list sudo apt update sudo apt install jellyfin
I get the following output:
deb [arch=amd64] https://repo.jellyfin.org/debian buster main
which seems correct. After a sudo apt update
(with no errors), I then give a sudo apt dist-upgrade
and get the following:
Errore:1 https://fra1.mirror.jellyfin.org/debian buster/main amd64 jellyfin-server amd64 10.7.0-1 Impossibile connettersi a fra1.mirror.jellyfin.org:443 (139.59.139.28). - connect (111: Connessione rifiutata) Impossibile iniziare la connessione a fra1.mirror.jellyfin.org:443 (2a03:b0c0:3:d0::727:4001). - connect (101: La rete non è raggiungibile) Errore:2 https://fra1.mirror.jellyfin.org/debian buster/main amd64 jellyfin-web all 10.7.0-1 Impossibile iniziare la connessione a fra1.mirror.jellyfin.org:443 (2a03:b0c0:3:d0::727:4001). - connect (101: La rete non è raggiungibile) Errore:3 https://fra1.mirror.jellyfin.org/debian buster/main amd64 jellyfin all 10.7.0-1 Impossibile iniziare la connessione a fra1.mirror.jellyfin.org:443 (2a03:b0c0:3:d0::727:4001). - connect (101: La rete non è raggiungibile) E: Impossibile recuperare https://fra1.mirror.jellyfin.org/debian/pool/main/j/jellyfin-server/jellyfin-server_10.7.0-1_amd64.deb Impossibile connettersi a fra1.mirror.jellyfin.org:443 (139.59.139.28). - connect (111: Connessione rifiutata) Impossibile iniziare la connessione a fra1.mirror.jellyfin.org:443 (2a03:b0c0:3:d0::727:4001). - connect (101: La rete non è raggiungibile) E: Impossibile recuperare https://fra1.mirror.jellyfin.org/debian/pool/main/j/jellyfin-web/jellyfin-web_10.7.0-1_all.deb Impossibile iniziare la connessione a fra1.mirror.jellyfin.org:443 (2a03:b0c0:3:d0::727:4001). - connect (101: La rete non è raggiungibile) E: Impossibile recuperare https://fra1.mirror.jellyfin.org/debian/pool/main/j/jellyfin/jellyfin_10.7.0-1_all.deb Impossibile iniziare la connessione a fra1.mirror.jellyfin.org:443 (2a03:b0c0:3:d0::727:4001). - connect (101: La rete non è raggiungibile) E: Impossibile scaricare alcuni pacchetti. Potrebbe essere utile eseguire "apt-get update" o provare l'opzione "--fix-missing".
Basically, its saying that it can’t establish a connection with fra1.mirror.jellyfin.org:443
as “network can’t be reached”. But what I don’t understand is that I can reach this link https://repo.jellyfin.org/releases/server/debian/versions/stable/server/10.7.0/
with my browser. Why is apt going to fra1.mirror.jellyfin.org:443
when jellyfin.list
is pointing to https://repo.jellyfin.org/debian
?
I guess this is because the Jellyfin server is pointing my apt to a mirror. But annoyingly, I’m always getting pointed to that mirror and it always fails. How can I fix this?
Thanks