web-dev-qa-db-fra.com

sudo apt-get update échoue sous Ubuntu 17.04

Lors de l'exécution du Sudo apt-get update sur ubuntu 17.04 Zesty Zapus, j'obtiens l'erreur suivante. J'ai posté sur les lignes d'erreur. Je voulais installer des bibliothèques python comme matplotlib et tkinter qui n'ont pas pu être installées car la commande ci-dessus n'a pas été exécutée avec succès. S'il vous plaît, suggérez-moi quoi faire.

Err:9 http://security.ubuntu.com/ubuntu zesty-security/main AMD64 Packages
  404  Not Found [IP: 2001:67c:1560:8001::14 80]
Err:25 http://in.archive.ubuntu.com/ubuntu zesty/main i386 Packages
  404  Not Found [IP: 2001:67c:1360:8001::21 80]
Err:81 http://in.archive.ubuntu.com/ubuntu zesty-updates/main AMD64 Packages
  404  Not Found [IP: 2001:67c:1360:8001::21 80]
Err:113 http://in.archive.ubuntu.com/ubuntu zesty-backports/main AMD64 Packages
  404  Not Found [IP: 2001:67c:1360:8001::21 80]
Reading package lists... Done
W: The repository 'http://security.ubuntu.com/ubuntu zesty-security Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: The repository 'http://in.archive.ubuntu.com/ubuntu zesty Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: The repository 'http://in.archive.ubuntu.com/ubuntu zesty-updates Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: The repository 'http://in.archive.ubuntu.com/ubuntu zesty-backports Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: Failed to fetch http://security.ubuntu.com/ubuntu/dists/zesty-security/main/binary-AMD64/Packages  404  Not Found [IP: 2001:67c:1560:8001::14 80]
E: Failed to fetch http://in.archive.ubuntu.com/ubuntu/dists/zesty/main/binary-i386/Packages  404  Not Found [IP: 2001:67c:1360:8001::21 80]
E: Failed to fetch http://in.archive.ubuntu.com/ubuntu/dists/zesty-updates/main/binary-AMD64/Packages  404  Not Found [IP: 2001:67c:1360:8001::21 80]
E: Failed to fetch http://in.archive.ubuntu.com/ubuntu/dists/zesty-backports/main/binary-AMD64/Packages  404  Not Found [IP: 2001:67c:1360:8001::21 80]
E: Some index files failed to download. They have been ignored, or old ones used instead.
5
Ayush Kumar

17.04 ne reçoit plus d’appui d’Ubuntu. Ainsi, la solution qui a fonctionné pour moi a été de le mettre à niveau vers 17.10 car aucune autre solution ne l’a aidé.

0
Ayush Kumar

vous pouvez le résoudre par: remplacez simplement us.archive.ubuntu.com et security.ubuntu.com dans /etc/apt/sources.list avec old-releases.ubuntu.com, puis vous pourrez terminer la mise à jour. .

se référer à source 1 et forum ubuntu

ça marche pour moi

9

Dans mon cas:

sed -e 's/archive.ubuntu.com/old-releases.ubuntu.com/g' -i /etc/apt/sources.list 
sed -e 's/security.ubuntu.com/old-releases.ubuntu.com/g' -i /etc/apt/sources.list 
5
Sergey Pavlov

Dans mon cas, j'ai pu télécharger certains des packages en procédant comme suit: 

Je devais remplacer "us.archive.ubuntu.com" et "security.ubuntu.com" dans /etc/apt/sources.list AVEC "old-releases.ubuntu.com", puis j'ai pu télécharger certains de ces fichiers. les paquets, comme dit Ayush Kumar.

Pour les autres mises à jour répertoriées par ma société d'hébergement, Linode, j'ai utilisé les éléments suivants: 

Je devais utiliser le drapeau --allow-unauthenticated avec Sudo apt-get update.

Sudo apt-get update --allow-unauthenticated

Ensuite, j'ai pu terminer la mise à jour. 

2
luminol