web-dev-qa-db-fra.com

Problèmes de mise à jour Ubuntu 18.04.1 LTS Sudo apt-get update

Bonjour, j'ai un problème avec la nouvelle mise à jour dans Ubuntu, quelqu'un peut m'aider, j'ai cette erreur

~$ Sudo apt-get update
Hit:1 http://si.archive.ubuntu.com/ubuntu bionic InRelease
Hit:2 http://si.archive.ubuntu.com/ubuntu bionic-updates InRelease             
Hit:3 http://si.archive.ubuntu.com/ubuntu bionic-backports InRelease           
Get:4 http://security.ubuntu.com/ubuntu bionic-security InRelease [83,2 kB]    
Get:5 https://dl.winehq.org/wine-builds/ubuntu bionic InRelease [4689 B]       
Err:5 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
Reading package lists... Done
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
DJ84

On dirait que vous n'avez pas importé de clés GPG lorsque vous avez ajouté le référentiel winehq:

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

Essayez de les importer avec cette commande:

wget -qO- https://dl.winehq.org/wine-builds/Release.key | Sudo apt-key add -

et ensuite faire un Sudo apt-get update.

L'erreur devrait avoir disparu.

1
Mr Shunz