web-dev-qa-db-ja.com

wineの署名検証エラー-インデックスファイルのダウンロードに失敗しました-ミラーの変更は役に立ちません

Sudo 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: https://dl.winehq.org/wine-builds/ubuntu bionic InRelease: 
The following signatures couldn't be verified
 because the public key is not available: NO_PUBKEY 76F1A20FF987672F
W: Failed to fetch https://dl.winehq.org/wine-builds/ubuntu/dists/bionic/InRelease
The following signatures couldn't be verified
 because the public key is not available: NO_PUBKEY 76F1A20FF987672F
W: Some index files failed to download. They have been ignored, or old ones used instead.

そこで、 これはUbuntuの質問に答える の提案に従ってミラーを変更します。その後、コンピューターを再起動します。 Sudo apt-get updateのときも上記と同じエラーが表示されます。

キーを再インストールしてみます。

$ wget -nc https://dl.winehq.org/wine-builds/Release.key && Sudo apt-key add Release.key
File ‘Release.key’ already there; not retrieving. OK

そして、ping -c3 archive.ubuntu.comであり、パケット損失は0%です。他に何をする必要がありますか?

19
Jason Hunter

新しいキーファイルを追加した後、apt updateよりもapt-get updateを使用する方がよいことに注意してください。変更を受け入れるように求められます。

だから完全に:

wget -nc https://dl.winehq.org/wine-builds/winehq.key && Sudo apt-key add winehq.key && Sudo apt update
12
Oberon

2018-12-19 08:07現在、前述のように新しいwinehq.keyキーファイルがあります here

新しいリポジトリキーをダウンロードし、信頼できるキーのリストに追加します。

cd /tmp
wget -nc https://dl.winehq.org/wine-builds/winehq.key
Sudo apt-key add winehq.key
Sudo apt update

@ jason-hunterがコメントで述べたように、apt updateはリポジトリの変更を受け入れるかどうかを尋ねますが、apt-get updateはエラーを表示して失敗します。

21
Vic

https://dl.winehq.org/wine-builds/ を調べると、新しいファイルがあります winehq.key 。指紋がエラーと一致しているように見えるため、代わりにそれを使用してみてください。

# curl -sL "https://dl.winehq.org/wine-builds/Release.key" | gpg --dry-run --import --verbose
gpg: pub  rsa4096/818A435C5FCBF54A 2015-11-23  Sebastian Lackner (WineHQ packages) <[email protected]>
gpg: Total number processed: 1
# curl -sL "https://dl.winehq.org/wine-builds/winehq.key" | gpg --dry-run --import --verbose
gpg: pub  rsa3072/76F1A20FF987672F 2018-12-10  WineHQ packages <[email protected]>
gpg: key 76F1A20FF987672F: 1 signature not checked due to a missing key
gpg: Total number processed: 1
10
muru

このコマンドは私のために働いた:

wget -nc https://dl.winehq.org/wine-builds/winehq.key && apt-key add winehq.key
7
Rezty Felty

私も最近同じエラーを受け取っていました:

Err:3 https://dl.winehq.org/wine-builds/ubuntu bionic InRelease                
  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 76F1A20FF987672F

結局のところ、pubkeyをホストに追加する必要がありました。キーを追加すると、そこに表示されるキーの最後の8桁がF987672Fになります。それを以下に追加して、ホストにキーを追加します。

Sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv F987672F

お役に立てれば!

0
Terrance