O apt se importa se eu colocar o flag -f antes ou depois do comando?

0

Quando obtenho um conflito de dependência, install -f deve corrigir problemas.

Qual é a diferença entre apt-get install -f e apt-get -f install ?

    
por OerHeks 11.07.2015 / 16:57

2 respostas

2

Tanto apt-get install -f quanto apt-get -f install significam o mesmo.

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.
    
por Ron 11.07.2015 / 17:23
-1

Eu não acho que a ordem em que você fornece essas opções para o apt-get realmente importe. Eles significam a mesma coisa.

sudo apt-get -y install é equivalente a sudo apt-get install -y

    
por Chol Nhial 11.07.2015 / 17:25