1

I ran sudo apt-get update then got the following error:

GPG error: http://archive.ubuntu.com trusty Release: 
           The following signatures were invalid: BADSIG 16126D3A3E5C1192 
           Ubuntu Extras Archive Automatic Signing Key <ftpmaster@ubuntu.com>... 

can any one help please

antivirtel
  • 3,645

1 Answers1

2

You can fix this issue by adding missing signing key:

sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 16126D3A3E5C1192
sudo apt-get update

Please note, do not add any keys from the sources You don't trust. You are adding any keys for Your own risk.

To fix Your issue with the apt-get update please do the following:

sudo rm -rf /var/lib/apt/lists
sudo apt-get update --fix-missing
Eska
  • 495
  • 2
  • 11