1

I am a new Ubuntu user.12.04(32 bit ) version.I not update Ubuntu for 1 month. Now when I want to update using terminal sudo apt-get update then shows that:

reading package list done.....
:GPG error: http://in.archive.ubuntu.com precise Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>
W: GPG error: http://in.archive.ubuntu.com precise-backports Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>

And when I want to update using update manager then shows the massage that:

The action would require the installation of packages from not authenticated sources.

How can I solve this problem?

snoop
  • 4,110
  • 9
  • 41
  • 58

1 Answers1

0

run these commands:

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 40976EAF437D05B5
sudo apt-get update && sudo apt-get upgrade

The first command downloads key 40976EAF437D05B5 from keyserver.ubuntu.com, and the next one updates your package list, then applies the needed updates.

waltinator
  • 37,856
Alex Jones
  • 8,192