apt-get update 报告 GPG 错误

apt-get update 报告 GPG 错误

当我这样做时会发生这种情况apt-get update

Get:1 http://security.debian.org stretch/updates InRelease [68.2 kB]       
Ign:1 http://security.debian.org stretch/updates InRelease                     
Get:2 http://ftp.bme.hu/debian stretch InRelease [175 kB]
Get:3 http://ftp.cz.debian.org/debian stretch-updates InRelease [88.5 kB]
Ign:2 http://ftp.bme.hu/debian stretch InRelease                  
Ign:3 http://ftp.cz.debian.org/debian stretch-updates InRelease
Fetched 332 kB in 1s (175 kB/s)
Reading package lists... Done
W: GPG error: http://security.debian.org stretch/updates InRelease: At least one invalid signature was encountered.
W: The repository 'http://security.debian.org stretch/updates InRelease' is not signed.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: GPG error: http://ftp.bme.hu/debian stretch InRelease: At least one invalid signature was encountered.
W: The repository 'http://httpredir.debian.org/debian stretch InRelease' is not signed.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: GPG error: http://ftp.cz.debian.org/debian stretch-updates InRelease: At least one invalid signature was encountered.
W: The repository 'http://httpredir.debian.org/debian stretch-updates InRelease' is not signed.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.

这是我的sources.list

deb http://httpredir.debian.org/debian/ stretch main non-free contrib
deb-src http://httpredir.debian.org/debian/ stretch main non-free contrib

deb http://security.debian.org/ stretch/updates main non-free contrib
deb http://httpredir.debian.org/debian/ stretch-updates main non-free contrib

我该如何解决这个问题?我已经尝试了这里。

答案1

来自评论:通过升级软件包可以解决问题:

sudo apt-get update && sudo apt-get dist-upgrade

答案2

Debian 已经部署了新的密钥来签署他们的软件包和列表,为了解决错误,您需要最新版本的“debian-archive-keyring”。升级该软件包。

# apt-get install debian-archive-keyring

相关内容