Problema com o sudo apt-get update 16.04 [duplicate]

0
W: Target Sources (main/source/Sources) is configured multiple times in /etc/apt/sources.list.d/moka-ubuntu-daily-xenial.list:2 and /etc/apt/sources.list.d/moka-ubuntu-daily-xenial.list:3
W: Target Sources (main/source/Sources) is configured multiple times in /etc/apt/sources.list.d/moka-ubuntu-daily-xenial.list:2 and /etc/apt/sources.list.d/moka-ubuntu-daily-xenial.list:4
W: Target Sources (main/source/Sources) is configured multiple times in /etc/apt/sources.list.d/noobslab-ubuntu-apps-dependencies-xenial.list:2 and /etc/apt/sources.list.d/noobslab-ubuntu-apps-dependencies-xenial.list:3
W: GPG error: http://extras.ubuntu.com/ubuntu precise Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 16126D3A3E5C1192
W: The repository 'http://extras.ubuntu.com/ubuntu precise Release' is not signed.
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: http://archive.canonical.com/ubuntu/dists/precise/Release.gpg: Signature by key 630239CC130E1A7FD81A27B140976EAF437D05B5 uses weak digest algorithm (SHA1)
W: http://us.archive.ubuntu.com/ubuntu/dists/precise-security/InRelease: Signature by key 630239CC130E1A7FD81A27B140976EAF437D05B5 uses weak digest algorithm (SHA1)
W: http://us.archive.ubuntu.com/ubuntu/dists/precise-updates/InRelease: Signature by key 630239CC130E1A7FD81A27B140976EAF437D05B5 uses weak digest algorithm (SHA1)
W: http://us.archive.ubuntu.com/ubuntu/dists/precise-backports/InRelease: Signature by key 630239CC130E1A7FD81A27B140976EAF437D05B5 uses weak digest algorithm (SHA1)
W: http://us.archive.ubuntu.com/ubuntu/dists/precise/Release.gpg: Signature by key 630239CC130E1A7FD81A27B140976EAF437D05B5 uses weak digest algorithm (SHA1)
W: The repository 'http://ppa.launchpad.net/webupd8team/jupiter/ubuntu oneiric 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://ppa.launchpad.net/folke-schwinning/personal/ubuntu xenial 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://ppa.launchpad.net/noobslab/apps-dependencies/ubuntu xenial 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://ppa.launchpad.net/webupd8team/jupiter/ubuntu/dists/oneiric/main/source/Sources  404  Not Found
E: Failed to fetch http://ppa.launchpad.net/folke-schwinning/personal/ubuntu/dists/xenial/main/source/Sources  404  Not Found
E: Failed to fetch http://ppa.launchpad.net/noobslab/apps-dependencies    /ubuntu/dists/xenial/main/source/Sources  404  Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.
W: Target Sources (main/source/Sources) is configured multiple times in /etc/apt/sources.list.d/moka-ubuntu-daily-xenial.list:2 and /etc/apt/sources.list.d/moka-ubuntu-daily-xenial.list:3
W: Target Sources (main/source/Sources) is configured multiple times in /etc/apt/sources.list.d/moka-ubuntu-daily-xenial.list:2 and /etc/apt/sources.list.d/moka-ubuntu-daily-xenial.list:4
W: Target Sources (main/source/Sources) is configured multiple times in /etc/apt/sources.list.d/noobslab-ubuntu-apps-dependencies-xenial.list:2 and /etc/apt/sources.list.d/noobslab-ubuntu-apps-dependencies-xenial.list:3

Eu tentei a solução de este link Mas não obtendo solução

Eu tentei instalar GRASS GIS, OSGeo, etc

    
por Shreejay Pendse 23.11.2016 / 21:37

2 respostas

0

  1. Entre no /etc/apt/sources.list.d e procure por moka-ubuntu-daily-xenial.list e exclua-o se houver mais de uma entrada.
  2. Execute também o passo seguinte para noobslab-ubuntu-apps-dependencies-xenial.list .
  3. Onde as linhas estão começando com E , isso significa erro. verifique se o URL está correto ou não.
  4. Para todas as linhas com W , elas são um aviso. De acordo com os registros, podemos concluir que a URL que você colocou não está acessível.
por Bidyut 23.11.2016 / 21:44
0

Primeiro

Para o erro configured multiple times , em terminal , faça o seguinte:

ls -al /etc/apt/sources.list.d/moka-ubuntu-daily-xenial.list*

Você provavelmente verá isso:

moka-ubuntu-daily-xenial.list
moka-ubuntu-daily-xenial.list:2
moka-ubuntu-daily-xenial.list:3
moka-ubuntu-daily-xenial.list:4

Deixe moka-ubuntu-daily-xenial.list sozinho e exclua os 3 restantes com:

sudo rm /etc/apt/source.list.d/moka-ubuntu-daily-xenial.list:2
sudo rm /etc/apt/source.list.d/moka-ubuntu-daily-xenial.list:3
sudo rm /etc/apt/source.list.d/moka-ubuntu-daily-xenial.list:4

Segunda

Para os erros 404 Not Found , veja minha resposta anterior a essa mesma pergunta em como redefinir as fontes de atualização

Terceiro

Ignore os erros do SHA1.

Quarto

Para os erros repository can't be authenticated , instale y-ppa-manager e atualize as chaves de autorização gpg. Em terminal , digite:

sudo apt-get update
sudo apt-get install y-ppa-manager

Em seguida, inicie PPA Manager no painel do Unity.

    
por heynnema 23.11.2016 / 22:31