web-dev-qa-db-fra.com

Google Compute Engine Ubuntu 17.04 zesty n'a plus de fichier de version

Je viens de créer un nouveau serveur Google Cloud Compute Engine en utilisant Ubuntu 17.04 comme disque de démarrage:

Ubuntu 17.04
AMD64 zesty image built on 2017-12-08

Avant de faire quoi que ce soit, si j'essaie d'exécuter Sudo apt-get update, je reçois les erreurs suivantes:

Ign:1 http://europe-west1.gce.archive.ubuntu.com/ubuntu zesty InRelease
Ign:2 http://europe-west1.gce.archive.ubuntu.com/ubuntu zesty-updates 

InRelease
Ign:3 http://europe-west1.gce.archive.ubuntu.com/ubuntu zesty-backports InRelease
Ign:4 http://security.ubuntu.com/ubuntu zesty-security InRelease             
Err:5 http://europe-west1.gce.archive.ubuntu.com/ubuntu zesty Release        
  404  Not Found [IP: 35.195.241.40 80]
Err:6 http://europe-west1.gce.archive.ubuntu.com/ubuntu zesty-updates Release
  404  Not Found [IP: 35.195.241.40 80]
Err:7 http://europe-west1.gce.archive.ubuntu.com/ubuntu zesty-backports Release
  404  Not Found [IP: 35.195.241.40 80]
Err:8 http://security.ubuntu.com/ubuntu zesty-security Release               
  404  Not Found [IP: 91.189.88.161 80]
Hit:9 http://archive.canonical.com/ubuntu zesty InRelease                    
Reading package lists... Done                          
E: The repository 'http://europe-west1.gce.archive.ubuntu.com/ubuntu zesty Release' does no longer have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: The repository 'http://europe-west1.gce.archive.ubuntu.com/ubuntu zesty-updates Release' does no longer have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: The repository 'http://europe-west1.gce.archive.ubuntu.com/ubuntu zesty-backports Release' does no longer have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: The repository 'http://security.ubuntu.com/ubuntu zesty-security Release' does no longer have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

En regardant http://europe-west1.gce.archive.ubuntu.com/ubuntu/ je vois des mises à jour d’aujourd’hui moins d’une heure.

S'agit-il d'une erreur de la part de Google ou ai-je commis une erreur?

14
chapmanio

Je confirme que "E: le référentiel ' http://ru.archive.ubuntu.com/ubuntu zesty Release' n'a plus de fichier Release."

Résolu comme proposé auparavant par l'héroïne dans la recette https://smyl.es/how-to-fix-ubuntudebian-apt-get-404-not-found-package-repository-errors-saucy-raring -quantal-oneiric-natty/

Exécutez la commande ci-dessous sur votre serveur. Elle remplacera toutes les URL du référentiel de paquets archive.ubuntu.com et security.ubuntu.com par old-releases.ubuntu.com.

Sudo sed -i -e '/ archive.ubuntu.com\| security.ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list

Malheureusement, cette commande sed ne fonctionnera pas pour vous si vous avez sélectionné un miroir national (comme us.archive.ubuntu.com pour les mises à jour. Ensuite, vous pouvez mettre à jour les chaînes du fichier /etc/apt/sources.list en modifiant manuellement toutes les entrées telles que http://*.archive.ubuntu.com et http://*.security.ubuntu.com en http://old-releases.ubuntu.com un éditeur de texte, 

Sudo nano /etc/apt/sources.list

ou

Sudo vi /etc/apt/sources.list

Par exemple, votre http://europe-west1.gce.archive.ubuntu.com/ubuntu zesty InRelease devient http://old-releases.ubuntu.com/ubuntu zesty InRelease et ainsi de suite.

Voici mon fichier mis à jour /etc/apt/sources.list:

# deb cdrom:[Kubuntu 17.04 _Zesty Zapus_ - Release AMD64 (20170412)]/ zesty main multiverse restricted universe

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://old-releases.ubuntu.com/ubuntu/ zesty main restricted
# deb-src http://old-releases.ubuntu.com/ubuntu/ zesty main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://old-releases.ubuntu.com/ubuntu/ zesty-updates main restricted
# deb-src http://old-releases.ubuntu.com/ubuntu/ zesty-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://old-releases.ubuntu.com/ubuntu/ zesty universe
# deb-src http://old-releases.ubuntu.com/ubuntu/ zesty universe
deb http://old-releases.ubuntu.com/ubuntu/ zesty-updates universe
# deb-src http://old-releases.ubuntu.com/ubuntu/ zesty-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://old-releases.ubuntu.com/ubuntu/ zesty multiverse
# deb-src http://old-releases.ubuntu.com/ubuntu/ zesty multiverse
deb http://old-releases.ubuntu.com/ubuntu/ zesty-updates multiverse
# deb-src http://old-releases.ubuntu.com/ubuntu/ zesty-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://old-releases.ubuntu.com/ubuntu/ zesty-backports main restricted universe multiverse
# deb-src http://old-releases.ubuntu.com/ubuntu/ zesty-backports main restricted universe multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu zesty partner
# deb-src http://archive.canonical.com/ubuntu zesty partner

deb http://old-releases.ubuntu.com/ubuntu zesty-security main restricted
# deb-src http://old-releases.ubuntu.com/ubuntu zesty-security main restricted
deb http://old-releases.ubuntu.com/ubuntu zesty-security universe
# deb-src http://old-releases.ubuntu.com/ubuntu zesty-security universe
deb http://old-releases.ubuntu.com/ubuntu zesty-security multiverse
# deb-src http://old-releases.ubuntu.com/ubuntu zesty-security multiverse
16
Denis Trofimov

17.04 est maintenant en fin de vie, à compter du 13 janvier 2018. Vous devrez passer à une version plus récente ou utiliser une version stable à long terme: https://wiki.ubuntu.com/Releases

7
Jeremy Walters

Zesty n'a plus de fichier de version, en effet "FIN DE VIE CYCLE"

J'ai eu le même problème, la solution est dans ce lien, cela fonctionne pour moi ...

https://help.ubuntu.com/community/EOLUpgrades

J'espère que ma réponse aiderait.

2
Sofiene Fehri

Le problème ne semble pas concerner Google, mais le fait que vous essayez d'obtenir des mises à jour à partir de HTTP et non de HTTPS.

Essayez d'utiliser cette option d'apt-get:

--allow-unauthenticated
       Ignore if packages can't be authenticated and don't Prompt about it. This can be useful while working with local repositories, but is a huge security risk if data authenticity isn't ensured in another way by the
       user itself. The usage of the Trusted option for sources.list(5) entries should usually be preferred over this global override. Configuration Item: APT::Get::AllowUnauthenticated.
0
heroin