키를 수동으로 추가하려고 하는데 어떤 이유로 추가할 수 없습니다.
사용하지 않고 수동으로 키를 추가하려면 어떻게 해야 합니까?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
이는 apt-key add
-command 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.