Sunday, April 3, 2016

Ubuntu 12 ‘apt-get update not working’ / Failed to Fetch

If you receive following error on running apt-get update on UBUNTU 12.x
As showed in the image below …
ubuntu error
then issue following commands for a quick fix

QUICK FIX Code

1
2
3
4
5
6
7
8
9
10
11
sudo rm /var/lib/apt/lists/* -vf
 
sudo apt-get clean
 
sudo apt-get autoremove
 
sudo apt-get dist-upgrade
 
sudo apt-get update --fix-missing
 
sudo apt-get update
Done.
apt-get ok


0 comments:

Post a Comment