浏览代码

Add apt-key for managing system trusted GPG keys.

Peter Tripp 9 年之前
父节点
当前提交
e660e79eb5
共有 1 个文件被更改,包括 19 次插入0 次删除
  1. 19 0
      pages/linux/apt-key.md

+ 19 - 0
pages/linux/apt-key.md

@@ -0,0 +1,19 @@
+# apt-key
+
+> Key management utility for the APT Package Manager on Debian and Ubuntu
+
+- List trusted keys
+
+`apt-key list`
+
+- Add a key to the trusted keystore
+
+`apt-key add {{public_key_file.asc}}`
+
+- Delete a key from the trusted keystore
+
+`apt-key del {{key_id}}`
+
+- Add a remote key to the trusted keystore
+
+`wget -qO - {{https://host.tld/filename.key}} | apt-key add -`