Home Linux & Systems Cybersecurity Cloud & DevOps Networks & Infrastructure SIEM & Monitoring DFIR & Threat Intel Development & Other All categories Projects About Tools

Error No Debian public key exists

Leer en espanol
Error No Debian public key exists

Table of contents

textW: There is no public key available for the following key identifiers: EF0F382A1A7B6500 It's because I don't know ===

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:

EF0F382A1A7B6500
It 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 –

OK
all the best.
:wq!

Comments