Erro GPG, assinaturas chave pública não disponível TENTOU MUITO

9

apt-get update retorna:

W: GPG error: http://pl.archive.ubuntu.com trusty Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 40976EAF437D05B5 NO_PUBKEY 3B4FE6ACC0B21F32
W: GPG error: http://pl.archive.ubuntu.com trusty-updates Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 40976EAF437D05B5 NO_PUBKEY 3B4FE6ACC0B21F32
W: GPG error: http://extras.ubuntu.com trusty Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 16126D3A3E5C1192
W: GPG error: http://deb.torproject.org trusty InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY EE8CBC9E886DDD89
W: GPG error: http://security.ubuntu.com trusty-security Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 40976EAF437D05B5 NO_PUBKEY 3B4FE6ACC0B21F32
W: GPG error: http://dl.google.com stable Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A040830F7FAC5991
W: GPG error: http://dl.google.com stable Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A040830F7FAC5991

Já experimentei muitas soluções recomendadas de perguntas antigas, mas nada parece ajudar.

  • sudo apt-get clean

  • sudo apt-key adv --keyserver chaveserver.ubuntu.com --recv-keys 40976EAF437D05B5 (com todas as chaves ausentes)

  • Eu instalei lauchpad-getkeys que é suposto para restaurar chaves automaticamente

Alguma idéia?

    
por Adam 18.09.2014 / 04:34

2 respostas

2

Você provavelmente é afetado pelo bug 1263540 . Eu sugiro que você tente:

  1. sudo apt-get clean
  2. sudo mv / var / lib / apt / lists /var/lib/apt/lists.old
  3. mkdir -p / var / lib / apt / listas / parcial
  4. Remova qualquer arquivo de tamanho 0 em /etc/apt/trusted.gpg.d /
  5. sudo apt-get update

Se ele não funcionar, restaure o / var / lib / apt / lists em backup na etapa 2.

Fonte

    
por sмurf 19.09.2014 / 06:50
3

O apt presente no Ubuntu está sofrendo de um erro de limite de recurso gpg no apt

Você pode facilmente corrigir isso indo para /etc/apt/trusted.gpg.d e removendo chaves não usadas (geralmente de PPAs que você não usa mais) até obter menos de 40 chaves.

Em seguida, executei sudo apt-get update

    
por Rael Gugelmin Cunha 18.03.2015 / 14:43