GPG 저장소 오류를 수정하는 방법

GPG 저장소 오류를 수정하는 방법

저는 크롬북에서 Linux를 사용하고 있는데 최근 개발 환경에서 Linux를 제거하고 다시 설치했습니다. 설치 후 실행했지만 sudo apt update몇 초 후에 다음이 표시되었습니다.

W: GPG error: https://storage.googleapis.com/cros-packages/89 buster Release: The following signatures were invalid: EXPKEYSIG 78BD65473CB3BD13 Google Inc. (Linux Packages Signing Authority) <[email protected]>
E: The repository 'https://storage.googleapis.com/cros-packages/89 buster Release' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

이 문제를 어떻게 해결할 수 있나요?

답변1

GPG 키를 추가해야 합니다:

curl https://packages.cloud.google.com/apt/doc/apt-key.gpg |
sudo gpg --dearmor --yes --output /usr/share/keyrings/cloud.google.pgp

[signed-by=//usr/share/keyrings/cloud.google.pgp]그런 다음 항목 에 추가하십시오 sources.list.

deb [signed-by=/usr/share/keyrings/cloud.google.pgp] https://packages.cloud.google.com/apt buster main

데비안 위키: 제3자 사용.

관련 정보