web-dev-qa-db-ja.com

Apt更新エラー-「署名の検証中にエラーが発生しました」(Chrome)

更新すると、次のメッセージが表示されました。

W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used.
GPG error: http://dl.google.com/linux/chrome/deb stable Release:
The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 6494C6D6997C215E
W: Failed to fetch http://dl.google.com/linux/chrome/deb/dists/stable/Release.gpg
The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 6494C6D6997C215E
W: Some index files failed to download. They have been ignored, or old ones used instead.
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Calculating upgrade... Done

Ubuntu 16.04を使用していますが、現在Chrome 60.0.3112.90を使用しています。助言がありますか?また、libimobiledeviceをインストールしようとしていますが、どうやらインストールできないPPAを追加したばかりのリポジトリをシステムが読み取っていないようです。助けてくれてありがとう。

90
Jose

どうやらGoogleはChrome Linuxリポジトリのキーを変更したようです。 Googleから新しいレポキーをインポートすることで修正できます。

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | Sudo apt-key add -

これで、エラーなしでシステムを更新できるはずです。

これは、APTベースのディストリビューションで動作します:Debian、Ubuntuおよび派生物(Linux Mint、Kubuntu、Xubuntu、Lubuntuなど)

RPMベースのシステム(Fedora、CentOS、openSUSEなど)の詳細と修正については、公式の Google Linuxリポジトリページ を参照してください。

146
Dave

これを試して:

Sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 6494C6D6997C215E

そして

Sudo apt-get update
18
Ali A Ahmadi

これはあなたのために修正する必要があります

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | Sudo apt-key add -

参照: Google Chrome PPAアップグレードの無効な署名

7
Sam Hinshaw