web-dev-qa-db-fra.com

Qu'est-ce que Sudo apt-get -f install?

quelle est l'utilisation de apt-get -f install. quand j’exécute Sudo apt-get update j’ai eu quelques erreurs à la fin Il est dit essayer apt-get -f install. Quelle est cette commande? la dernière partie de mon erreur est:

. . .  
going to be installed  
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
6

Voir le manpage :

-f, --fix-broken
   Fix; attempt to correct a system with broken dependencies in place.
   This option, when used with install/remove, can omit any packages
   to permit APT to deduce a likely solution. If packages are
   specified, these have to completely correct the problem. The option
   is sometimes necessary when running APT for the first time; APT
   itself does not allow broken package dependencies to exist on a
   system. It is possible that a system's dependency structure can be
   so corrupt as to require manual intervention (which usually means
   using dselect(1) or dpkg --remove to eliminate some of the
   offending packages). Use of this option together with -m may
   produce an error in some situations. Configuration Item:
   APT::Get::Fix-Broken.

C'est l'une des premières solutions pour tenter de résoudre les dépendances umet. (Voir cette question: Comment puis-je résoudre des dépendances non résolues après l'ajout d'un PPA? )

8
chaos