Receive all TU/Dev Package Signature Keys
From ArchBang
Pacman 4.0 will ask for package signature keys until you have accumulated all the keys of the Trusted Users/Developers. If you want to bypass this and trust the TU/Devs have done their job correctly then edit your /etc/pacman.d/gnupg/gpg.conf by opening as root:
# nano /etc/pacman.d/gnupg/gpg.conf
and change the keyserver line to
keyserver hkp://pgp.mit.edu:11371
and then input in your terminal as root:
curl https://www.archlinux.org/{developers,trustedusers}/ | awk -F\" '(/pgp.mit.edu/) {sub(/.*search=0x/,"");print $1}' | xargs pacman-key --recv-keys
Back to Table of Contents