Importing GNU PGP keys into keyring

Printer-friendly versionI needed to import the GNU PGP keys into my local keyring so I could verify the GNU packages I download.

All I needed to do was:

wget http://ftp.gnu.org/gnu/gnu-keyring.gpg <br />
gpg --import gnu-keyring.gpg


Then I can verify package signatures with:
gpg --verify &lt;sig.file&gt; [&lt;package.file&gt;] <br />
<br />