apt-get update falha ao atualizar de 17.04 para 17.10 após EOL, nenhum dos espelhos pode ser encontrado

6

Estou recebendo a seguinte lista de erros ao tentar qualquer tipo de recomendação do apt-get. Por exemplo, sudo apt-get update eventualmente me dá

Reading package lists... Done
E: The repository 'http://us.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://us.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://us.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.
W: The repository 'http://us.archive.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.

Portanto, há várias soluções aqui que envolvem a mudança para um espelho diferente, mas isso falha para mim. Eu mudo para o servidor principal, sem alteração. Peço ao sistema para escolher o melhor servidor para mim, e eu recebo uma janela "Nenhum servidor de download adequado foi encontrado, verifique sua conexão à Internet". Bem, eu posso pingar o google (e fazer essa pergunta!), Então parece que a internet não é o problema.

Alguém tem alguma ideia?

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 17.04
Release:    17.04
Codename:   zesty

A distribuição é na verdade Pop! _OS, que eu acredito ser apenas o vanilla Ubuntu com opções de software específicas.

    
por levitopher 25.01.2018 / 21:36

1 resposta

14

Primeiramente, corrigiremos seus repositórios:

sudo sed -i -re 's/([a-z]{2}\.)?archive.ubuntu.com|security.ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list

Isto deve ajustar o seu /etc/apt/sources.list para se parecer com isto:

  

deb link zesty-updates main

     

deb link zesty-backports main

     

deb link zesty-security main

     

deb link universo principal restrito do zesty multiverse

Em seguida, execute:

sudo apt-get update && sudo apt-get dist-upgrade
    
por TelamonAegisthus 25.01.2018 / 22:58

Tags