web-dev-qa-db-ja.com

GPGを更新するSudo apt-getの試行中にエラーが発生しました。レポジトリはありません

私は他の投稿からこれらのものを修正する方法をよく理解していませんでした。誰かが私を助けることができますか?

W: 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 818A435C5FCBF54A
E: The repository 'https://dl.winehq.org/wine-builds/ubuntu bionic InRelease' 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
Arthur Abeilice

公開キーエラーが発生した場合、キー自体はNO_PUBKEYの最後の8桁です。

それをインストールするには、次の行を実行します

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

その後、再実行します

Sudo apt update

お役に立てれば!

2
Terrance

以下のコマンドを使用してワインキーを追加できます

Sudo apt-key add winehq.key

ソースは https://wiki.winehq.org/Ubunt

0
bcsalay

これは、Wineのリポジトリがコード署名を使用しておらず、そのリポジトリからパッケージを検証する方法がわからないため、更新を拒否していることを示しています。

winehq.orgのコード署名キー を追加することで問題を修正できます。

wget -nc https://dl.winehq.org/wine-builds/Release.key
Sudo apt-key add Release.key
rm Release.key
0
Kristopher Ives