web-dev-qa-db-ja.com

sudo add-apt-key:コマンドが見つかりません-Deepin 16.4

何らかの理由で手動でキーを追加しようとしています。

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
1
Jamie Hutber

これはapt-key add-apt-keyコマンドとaddサブコマンド/オプションです(add-apt-repositoryと混同している可能性があります)。これは、ファイルからキーを追加するためのものです。キーをフェッチして追加する場合は、 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.
3
muru