sudo apt-get atualizar erro

0
W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://in.archive.ubuntu.com trusty Release: The following signatures were invalid: BADSIG 16126D3A3E5C1192 Ubuntu Extras Archive Automatic Signing Key <[email protected]>

W: Failed to fetch http://dl.google.com/linux/chrome/deb/dists/stable/Release.gpg  Bad header line [IP: 216.58.197.46 80]"

W: Failed to fetch "http://dl.google.com/linux/chrome/deb/dists/stable/main/binary-amd64/Packages  404  Not Found [IP: 216.58.197.46 80]"

W: Failed to fetch http://in.archive.ubuntu.com/ubuntu/dists/trusty/Release  

W: Some index files failed to download. They have been ignored, or old ones used instead.  

como corrigir esses erros

    
por Prabal Kar 05.04.2016 / 17:44

1 resposta

0

Você precisa editar seus arquivos para apontar para http:// em vez de http// .

Primeiro, execute o seguinte comando para corrigir seu sources.list :

sudo sed -i 's|http/|http:/|g' /etc/apt/sources.list

Em seguida, execute o seguinte comando para corrigir seu google-chrome.list:

sudo sed -i s|http/|http:/|g' /etc/apt/sources.list.d/google-chrome.list

Por fim, execute o seguinte comando para atualizar apt-get :

sudo apt-get update
    
por mchid 05.04.2016 / 23:31