GPGリポジトリエラーを修正する方法

GPGリポジトリエラーを修正する方法

私はChromebookで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

Debian Wiki: 第三者の使用。

関連情報