Debian: o add-apt-repository não encontra a chave openpgp e depois tem exceções / erros

2

Eu instalei o Debian no meu laptop há alguns dias. Hoje eu queria instalar o Sublime Text 3 e queria adicionar seu repositório aos meus confiáveis. Ao entrar

sudo add-apt-repository ppa:webupd8team/sublime-text-3

no meu terminal, recebo a seguinte saída:

gpg: keybox '/tmp/tmpninimrhg/pubring.gpg' created
gpg: /tmp/tmpninimrhg/trustdb.gpg: trustdb created
gpg: key C2518248EEA14886: public key "Launchpad VLC" imported
gpg: no ultimately trusted keys found
gpg: Total number processed: 1
gpg:               imported: 1
gpg: no valid OpenPGP data found.
Exception in thread Thread-1:
Traceback (most recent call last):
  File "/usr/lib/python3.5/threading.py", line 914, in _bootstrap_inner
    self.run()
  File "/usr/lib/python3.5/threading.py", line 862, in run
    self._target(*self._args, **self._kwargs)
  File "/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py", line 688, in addkey_func
    func(**kwargs)
  File "/usr/lib/python3/dist-packages/softwareproperties/ppa.py", line 386, in add_key
    return apsk.add_ppa_signing_key()
  File "/usr/lib/python3/dist-packages/softwareproperties/ppa.py", line 273, in add_ppa_signing_key
    cleanup(tmp_keyring_dir)
  File "/usr/lib/python3/dist-packages/softwareproperties/ppa.py", line 234, in cleanup
    shutil.rmtree(tmp_keyring_dir)
  File "/usr/lib/python3.5/shutil.py", line 480, in rmtree
    _rmtree_safe_fd(fd, path, onerror)
  File "/usr/lib/python3.5/shutil.py", line 438, in _rmtree_safe_fd
    onerror(os.unlink, fullname, sys.exc_info())
  File "/usr/lib/python3.5/shutil.py", line 436, in _rmtree_safe_fd
    os.unlink(name, dir_fd=topfd)
FileNotFoundError: [Errno 2] No such file or directory: 'S.gpg-agent.extra'

Além disso, quando executo apt-get update , recebo uma saída assim:

W: Target DEP-11-icons (main/dep11/icons-64x64.tar) is configured multiple times in /etc/apt/sources.list:3 and /etc/apt/sources.list:5

Alguém pode me ajudar? Obrigado!

    
por gheist 27.10.2017 / 11:21

1 resposta

1

Como a chave não está disponível no servidor de chaves da Debian, mas na do Ubuntu. Portanto, você precisa passar uma opção para consultar especificamente o servidor de chaves ubuntu, então ele funcionará como esperado.

O comando é: apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C2518248EEA14886

    
por 12.04.2018 / 13:03