Ubuntu Debian 上的存储库
Ubuntu Repositories on Debian
我试图在 Debian 上添加 Ubuntu 存储库,但出现错误:
Err:11 https://mirrors.ustc.edu.cn/ubuntu focal InRelease
The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 3B4FE6ACC0B21F32 NO_PUBKEY 871920D1991BC93C
如何解决?
理论上您可以将丢失的 GPG 密钥导入 Debian,但这是个坏主意。
要将缺少的密钥导入 Debian,您必须去:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3B4FE6ACC0B21F32
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 871920D1991BC93C
通常您应该检查 Debian 存储库中是否总是有相同的软件包。
最好的解决方案是添加正确的 Debian 存储库。
在 Debian 上,修复问题:
the public key is not available: NO_PUBKEY 3B4FE6ACC0B21F32 NO_PUBKEY
871920D1991BC93C
试试下面的代码:
sudo apt-get install debian-keyring debian-archive-keyring
sudo apt-key update
sudo apt-get update
我试图在 Debian 上添加 Ubuntu 存储库,但出现错误:
Err:11 https://mirrors.ustc.edu.cn/ubuntu focal InRelease
The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 3B4FE6ACC0B21F32 NO_PUBKEY 871920D1991BC93C
如何解决?
理论上您可以将丢失的 GPG 密钥导入 Debian,但这是个坏主意。
要将缺少的密钥导入 Debian,您必须去:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3B4FE6ACC0B21F32
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 871920D1991BC93C
通常您应该检查 Debian 存储库中是否总是有相同的软件包。 最好的解决方案是添加正确的 Debian 存储库。
在 Debian 上,修复问题:
the public key is not available: NO_PUBKEY 3B4FE6ACC0B21F32 NO_PUBKEY
871920D1991BC93C
试试下面的代码:
sudo apt-get install debian-keyring debian-archive-keyring
sudo apt-key update
sudo apt-get update