Posso fazer o dist-upgrade listar os pacotes que serão instalados?

4

Estou pensando em atualizar minha instalação do Intrepid Ibex Ubuntu para o Jaunty Jackalope, mas quero saber se algum dos novos pacotes que ele instala entrará em conflito com as muitas bibliotecas que eu instalei. Existe uma maneira de listar os pacotes que serão instalados sem realmente instalar nada? Obrigado.

    
por Evan Kroske 29.08.2009 / 20:39

1 resposta

8

Tanto quanto eu sei, você deve ser capaz de usar as opções padrão com apt-get dist-upgrade para simular a execução deste comando sem realmente executar a atualização.

   -s, --simulate, --just-print, --dry-run, --recon, --no-act
       No action; perform a simulation of events that would occur but do not actually change the
       system. Configuration Item: APT::Get::Simulate.

       Simulate prints out a series of lines each one representing a dpkg operation, Configure (Conf),
       Remove (Remv), Unpack (Inst). Square brackets indicate broken packages with and empty set of
       square brackets meaning breaks that are of no consequence (rare).


   -u, --show-upgraded
       Show upgraded packages; Print out a list of all packages that are to be upgraded. Configuration
       Item: APT::Get::Show-Upgraded.
    
por 29.08.2009 / 20:45