From the man page:
-m, --ignore-missing, --fix-missing
Ignore missing packages; if packages cannot be retrieved or fail the integrity
check after retrieval (corrupted package files), hold back those packages and
handle the result.
Use of this option together with -f may produce an error in some situations. If a
package is selected for installation (particularly if it is mentioned on the
command line) and it could not be downloaded then it will be silently held back.
Configuration Item: APT::Get::Fix-Missing.
This is confusing:
- How can 'ignore missing' and 'fix missing' be synonyms for the same option?
- What does 'hold back' mean in this context?
- What does 'handle the result' mean?
And in what situation is it useful anyway? When you try to install a package not in the apt index, you get this message:
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
Are the two suggestions (apt-get update
, apt-get install --fix-missing...
) at all equivalent?
Ok, in order:
apt-get upgrade
or withapt-get install somepackage
, usually apt tries to update dependencies. This means that it may find that some packages need new or updated versions of existing packages, and so on in a cascade of dependencies. If some of those packages are missing or fail the integrity check, it seems to suspend this package, and wants you to go to handle the result following the handle method of the requiring package, if possible. Often it stops installing this package.apt-get update
you download what is needed to rebuild the list of dependencies.After that you can try
apt-get install --fix-missing
again, in the hope that the updated list fixes the problem by itself.This can be very useful at times, such as when you add a source for packages in your
/etc/atp/sources.list
, or when the package index files have been updated.Not all the programs you can use under Ubuntu came from the official Ubuntu repositories, and are updated with the same versions -- this is rare.
Moreover, there are many reasons why an installation can be abruptly interrupted (A kill signal, a power shortage, a failure of graphic driver...) In those situations,
apt-get update
may not work, so you first need to fix the problem withapt-get install --fix-missing
or with somedpkg
commands.You can see
apt-get install --fix-missing
as a light and friendly version of commands likedpkg-reconfigure --all
ordpkg
.The following steps will solve the issue:
nameserver 8.8.8.8
in/etc/resolve.conf
sudo apt-get update