Verifica detalhes de pacotes desinstalados

0

Como verificar detalhes de pacotes ainda a serem instalados? Ou seja, quero descobrir quais binários um pacote instalará antes de instalá-lo.

Por exemplo,

dpkg -l binutils*

Acima lista os pacotes do padrão mencionado e diz que o binutils está instalado, mas o binutils-gold não está.

dpkg -L binutils

Acima lista todos os binários ou pelo menos todos os arquivos que o binutils instala em seu sistema. Eu quero consultar similarmente binutils-gold antes de instalá-lo e mesmo para qualquer outro pacote.

    
por Subhajit Kundu 19.05.2016 / 09:28

1 resposta

0

Você pode usar a opção --dry-run de apt e / ou apt-get para ver todo o efeito de um único comando apt / apt-get

Citando a página apt-get man

-s, --simulate, --just-print, --dry-run, --recon, --no-act

       No action; perform a simulation of events that would occur based on the current system state but do not
       actually change the system. Locking will be disabled (Debug::NoLocking) so the system state could change
       while apt-get is running. Simulations can also be executed by non-root users which might not have read
       access to all apt configuration distorting the simulation. A notice expressing this warning is also
       shown by default for non-root users (APT::Get::Show-User-Simulation-Note). Configuration Item:
       APT::Get::Simulate.
    
por dufte 19.05.2016 / 09:35