web-dev-qa-db-fra.com

Que fait exactement l'installation de Sudo apt-get -f?

Je l'ai vu avant. Je me demande simplement ce que fait exactement?

41
TheShadowFog

De man apt-get:

   -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.
39
Isaiah

Voici où je l'ai trouvé très utile. J'ai exécuté une commande dpkg pour installer deux packages .deb, mais l'installation a échoué car certaines dépendances étaient manquantes.

J'ai ensuite couru

apt-get -f install

et il a installé exactement les dépendances nécessaires. J'ai ensuite pu relancer ma commande dpkg et tout a fonctionné.

1
Chad