GPG Errors

Sometimes when you are installing RPM’s or Deb’s you will find yourself faced with GPG errors. Instead of ignoring them why not fix them!

Simply download the key by using the GPG tool:

gpg --keyserver pgpkeys.mit.edu --recv-key E6F33B6628973CC0

Then import that key into either APT:

gpg -a --export 010908312D230C5F | sudo apt-key add -

Or with RPM:

gpg --export -a 010908312D230C5F >key.txt
rpm --import key.txt

Simple!