sudo apt-get 更新错误

sudo apt-get 更新错误
W: An error occurred during the signature verification. 

    The repository is not updated and the previous index files will be used.

    GPG error: http://extras.ubuntu.com trusty Release: The following signatures couldn't be verified because the public key is not available: 

NO_PUBKEY 16126D3A3E5C1192

            W: Failed to fetch http://extras.ubuntu.com/ubuntu/dists/trusty/Release

那么有人能给我这个的正确密钥吗?我在谷歌上搜索了一下,但没有找到相关的东西

答案1

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 16126D3A3E5C1192然后尝试以下命令添加缺失的 gpg 密钥sudo apt-get update。这将解决问题。

答案2

不久前,我经历过一次这样的事。

您可以做的是清理 apt 中的每个缓存,方法如下:

sudo apt-get clean
sudo mv /var/lib/apt/lists /tmp
sudo apt-get update

(命令堆栈来自“GPG 错误:发布:以下签名无效:BADSIG”,当我遇到问题时我在这里找到了答案)

相关内容