是否有一些不该过期的东西过期了?
我在 Ubuntu 20.10 安装上使用调试符号,现在运行命令时会出现此信息apt-get update
。
W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used.
GPG error: http://ddebs.ubuntu.com groovy Release: The following signatures were invalid:
EXPKEYSIG C8CAB6595FDFF622 Ubuntu Debug Symbol Archive Automatic Signing Key (2016) <[email protected]>
答案1
这是一个当前的错误,请参阅此处了解信息和解决方法: https://bugs.launchpad.net/ubuntu/+source/ubuntu-keyring/+bug/1920640/comments/3
引用上面的帖子,运行:
$ sudo wget -O- http://ddebs.ubuntu.com/dbgsym-release-key.asc | sudo apt-key add - $ sudo apt update
答案2
你必须遵循https://wiki.ubuntu.com/Debug%20Symbol%20Packages恰恰。
您可能错过了以下步骤:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622
然后运行sudo apt update
。