Last updated on August 19, 2020 by Dan Nanni
Ubuntu or Debian Linux system maintains a local database (so-called APT package index) of packages that are available from the repositories defined in /etc/apt/sources.list
, or in /etc/apt/sources.list.d/
. The APT package index can often become outdated as the packages contained in the repositories change, or new repositories are added to the system.
In order to update the local apt package index, you run:
$ sudo apt-get update
However, for various reasons you may encounter errors while updating the APT package index. In the following I describe several ways to fix common apt-get
update errors.
W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/vivid-updates/main/i18n/Translation-en Hash Sum mismatch E: Some index files failed to download. They have been ignored, or old ones used instead.
This error can happen when fetching the latest repositories during "apt-get update
" was interrupted, and a subsequent "apt-get update
" is not able to resume the interrupted fetch. In this case, remove the content in /var/lib/apt/lists
before retrying "apt-get update
".
$ sudo rm -rf /var/lib/apt/lists/* $ sudo apt-get update
If the above does not solve the problem, use the following commands instead.
$ sudo rm -R /var/lib/apt/lists/partial/* $ sudo apt-get update
If you are getting "404 Not Found
" error, and you are using a rather old Ubuntu release, there is a chance that the 404 error occurs because your Ubuntu installation is no longer supported.
To find out whether this is the case, first check which Ubuntu release you are using, by running:
$ cat /etc/lsb-release
Then check out the "End of Life
" date of your Ubuntu release by referring to https://wiki.ubuntu.com/Releases
If your release has reached end of life (EOL), you need to modify /etc/apt/sources.list
as follows, in order to avoid 404 errors during "apt-get update
". Replace CODENAME
with the codename of Ubuntu release that you are using.
# Required deb http://old-releases.ubuntu.com/ubuntu/ CODENAME main restricted universe multiverse deb http://old-releases.ubuntu.com/ubuntu/ CODENAME-updates main restricted universe multiverse deb http://old-releases.ubuntu.com/ubuntu/ CODENAME-security main restricted universe multiverse # Optional #deb http://old-releases.ubuntu.com/ubuntu/ CODENAME-backports main restricted universe multiverse
This website is made possible by minimal ads and your gracious donation via PayPal or credit card
Please note that this article is published by Xmodulo.com under a Creative Commons Attribution-ShareAlike 3.0 Unported License. If you would like to use the whole or any part of this article, you need to cite this web page at Xmodulo.com as the original source.
Xmodulo © 2021 ‒ About ‒ Write for Us ‒ Feed ‒ Powered by DigitalOcean