I am using Ubuntu 15.04 and when I try update for Software updater I always get this error:
I also tried to not download some packages and download the main ones but the error always stays there.
I am using Ubuntu 15.04 and when I try update for Software updater I always get this error:
I also tried to not download some packages and download the main ones but the error always stays there.
This is some problem in yout cache run those commands to solve it:
sudo apt-get clean
sudo mv /var/lib/apt/lists /var/lib/apt/lists.bak
sudo mkdir -p /var/lib/apt/lists/partial
sudo apt-get clean
sudo apt-get update
I had the same problem. This happens due to the missing of some GPG keys.
Go to applications->accessories->terminal or press CTRL+ALT+T.
And, type below commands:-
sudo apt-get update --fix-missing
You will get an error saying that some public key is not available. Note the key string ( after the NO_PUBKEY; eg:3C962022012520A0 )
sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com XXXXXX
Replace the XXXXXX with the key string
Ex:- sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 3C962022012520A0
Now try updating your system again.
sudo apt-get update
This will surely solve this issue.
sudo apt-get update --fix-missing
I had an error messages GPG error: http://www.rabbitmq.com/debian testing InRelease: The following signatures couldn't be verified because the public key is not available. Adding public key for rabbitmq repo fixed the issue.
– Jekis
Mar 26 '17 at 05:24
apt-get update
, I re-opened the Software Updater and proceeded normally. – blong Aug 08 '16 at 14:19