web-dev-qa-db-ja.com

インストールするパッケージをdist-upgradeリストに作成できますか?

Intrepid IbexUbuntuのインストールをJauntyJackalopeにアップグレードすることを考えていますが、インストールする新しいパッケージのいずれかが、インストールした多くのライブラリと競合するかどうかを知りたいです。実際に何もインストールせずに、インストールするパッケージを一覧表示する方法はありますか?ありがとう。

5
Evan Kroske

私の知る限り、apt-get dist-upgradeで標準オプションを使用して実行をシミュレートできるはずです。実際にアップグレードを実行せずにこのコマンドを実行します。

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