The following signatures couldn’t be verified because the public key is not available
Onder mijn Ubuntu installatie had ik steeds het volgende probleem bij het draaien van een apt-get update: The following signatures couldn’t be verified because the public key is not available
De oplossing heb ik uiteindelijk gevonden door het installeren van de juiste key. De stappen die nodig zijn:
In terminal run:
gpg --keyserver keyserver.ubuntu.com --recv-keys $KEY
then
gpg --export --armor $KEY | sudo apt-key add -
where $KEY is key value you have missed. Do those 2 commands for each repository which you have problem.

Recent Comments