Excluindo erros '404' em minha source.list

4

eu corro

sudo apt-get update

que retorna essas falhas no final:

W: Failed to fetch httpe://archive.ubuntu.com/ubuntu/dists/raring/main/binary-amd64/Packages  Protocol httpe not supported or disabled in libcurl
W: Failed to fetch httpe://archive.ubuntu.com/ubuntu/dists/raring/multiverse/binary-i386/Packages  Protocol httpe not supported or disabled in libcurl
E: Some index files failed to download. They have been ignored, or old ones used instead.

Como posso resolver este problema? Eu olhei ao redor e não consigo encontrar uma resposta.

Depois de executar

lsb_release -a

No LSB modules are available.
Distributor ID:    Ubuntu
Description:    Ubuntu 14.04.3 LTS
Release:    14.04
Codename:    trusty
    
por Israel Davidson 07.10.2015 / 16:46

1 resposta

9

Um comando simples, httpe não é um protocolo válido:

sudo sed -i 's/httpe:/http:/g' /etc/apt/sources.list
sudo apt-get update

E agora, parece que você tem o Trusty instalado e os repositórios Raring no seu sources.list

Se você não precisa deste repositório, então remova as linhas com

sudo sed -i '/raring/d' /etc/apt/sources.list
    
por A.B. 07.10.2015 / 16:49

Tags