If when doing an apt-get update you get an error like the following:
text
W: No existe ninguna clave pública disponible para los siguientes identificadores de clave:
EF0F382A1A7B6500It is because the public key of the repository is not found.
To solve the problem, all you have to do is download it and add it:
text
gpg –keyserver keys.gnupg.net –recv-key EF0F382A1A7B6500
gpg: solicitando clave 1A7B6500 de hkp servidor keys.gnupg.net
gpg: clave 1A7B6500: clave pública «Debian Stable Release Key (9/stretch) <debian-release@lists.debian.org>» importada
gpg: no se encontraron claves absolutamente fiables
gpg: Cantidad total procesada: 1
gpg: importadas: 1 (RSA: 1)We add the key:
text
gpg –export –armor EF0F382A1A7B6500 | apt-key add –
OKall the best.
:wq!
Comments