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%です。他に何をする必要がありますか?
新しいキーファイルを追加した後、apt update
よりもapt-get update
を使用する方がよいことに注意してください。変更を受け入れるように求められます。
だから完全に:
wget -nc https://dl.winehq.org/wine-builds/winehq.key && Sudo apt-key add winehq.key && Sudo apt update
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
はエラーを表示して失敗します。
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
このコマンドは私のために働いた:
wget -nc https://dl.winehq.org/wine-builds/winehq.key && apt-key add winehq.key
私も最近同じエラーを受け取っていました:
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
お役に立てれば!