Evitar que o pacman reinstale os pacotes que já foram instalados

25

Como evitar que o pacman (gerenciador de pacotes do archlinux) reinstale os pacotes que já estavam instalados?

 pacman -S packagename    # install and reinstall if exists
    
por Kokizzu 20.03.2013 / 17:11

1 resposta

44

Use a opção --needed para ignorar a reinstalação de pacotes existentes quando você sincronizar (-S).

If a package in the list is already installed on the system, it will be reinstalled even if it is already up to date. This behavior can be overridden with the --needed option.

por 20.03.2013 / 17:52