O que é o sudo apt-get -f install?

6

qual é o uso de apt-get -f install . quando eu corro sudo apt-get update eu tenho alguns erros no final Ele diz tente apt-get -f install . O que é esse comando? a última parte do meu erro é:

. . .  
going to be installed  
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
    
por Mohammad Reza Rezwani 30.04.2014 / 23:31

1 resposta

8

Veja a página de manual :

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

É uma das primeiras soluções ao tentar resolver dependências de umet. (Veja esta pergunta: Como resolvo dependências não satisfeitas depois de adicionar um PPA? )

    
por chaos 30.04.2014 / 23:36