Created
December 27, 2011 13:56
-
-
Save DimaSamodurov/1523725 to your computer and use it in GitHub Desktop.
How to Fix ‘Requires installation of untrusted packages’ error in Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$sudo apt-get update | |
#notice line like: "The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive.." | |
#install public key above | |
$sudo apt-key adv --recv-key --keyserver keyserver.ubuntu.com 40976EAF437D05B5 | |
#thanks to: http://www.liberiangeek.net/2010/10/fix-requires-installation-untrusted-packages-error-ubuntu-10-10-maverick-meerkat/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment