sudo add-apt-key: comando não encontrado - Deepin 16.4

1

Eu estou tentando adicionar manualmente chaves como por algum motivo eu sou incapaz.

Como eu poderia adicionar uma chave manualmente sem usar add-apt-key

hutber@hutber-PC:~$ sudo apt-get install software-properties-common
Reading package lists... Done
Building dependency tree       
Reading state information... Done
software-properties-common is already the newest version (0.96.20.2-1).
The following package was automatically installed and is no longer required:
  libnpth0:i386
Use 'sudo apt autoremove' to remove it.
0 upgraded, 0 newly installed, 0 to remove and 60 not upgraded.
hutber@hutber-PC:~$ sudo add-apt-key 073E051D7B2AEE37
sudo: add-apt-key: command not found
    
por Jamie Hutber 13.10.2017 / 11:46

1 resposta

2

É apt-key add - apt-key o comando e add do subcomando / opção (você pode estar confundindo com add-apt-repository ). Isto é para adicionar uma chave de um arquivo. Se você deseja buscar uma chave e adicioná-la, você precisa de apt-key adv --recv-key :

adv
   Pass advanced options to gpg. With adv --recv-key you can e.g.
   download key from keyservers directly into the the trusted set of
   keys. Note that there are no checks performed, so it is easy to
   completely undermine the apt-secure(8) infrastructure if used
   without care.
    
por 13.10.2017 / 11:55