本文主要是介绍修复 apt-get update “the following signatures couldn’t be verified because the public key is not avai,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
翻译的 原文:
https://chrisjean.com/fix-apt-get-update-the-following-signatures-couldnt-be-verified-because-the-public-key-is-not-available/
1. 在进行 sudo apt-get update 的时候出现了这个错误
2. 修复
我们看到提示我们,服务器没有这个公钥
NO_PUBKEY 8D5A09DC9B929006
我们把这个公钥添加到服务器就行了
// 8D5A09DC9B929006 是我的缺少的公钥,你写你缺少的公钥就行
// 如果缺少多个就多次执行下面的命令,只是需要修改成相应的公钥就ok
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 8D5A09DC9B929006
输出这些,就是成功了,
这篇关于修复 apt-get update “the following signatures couldn’t be verified because the public key is not avai的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!