通常、マシンを次のようにアップグレードします。
sudo apt-get update && time sudo apt-get dist-upgrade
以下はからの抜粋ですman apt-get
。アップグレードを使用すると、ルールが維持されます。現在、インストールされているパッケージが削除されたり、まだインストールされていないパッケージが取得およびインストールされたりすることはありません。それが重要な場合は、を使用してくださいapt-get upgrade
。物事を「正常に動作させたい」場合は、おそらくapt-get dist-upgrade
依存関係が確実に解決されるようにする必要があります。
システム管理者である場合、dist-upgradeの代わりにアップグレードする理由を拡張するには、予測可能性が必要です。あなたは高度な機能のように使用している可能性がありがちピニングかのコレクションから引っ張っのPPAを常に熱心に利用可能なすべてのパッケージをアップグレードするのではなく、お使いのシステムと使用可能なアップグレードを検査する場所で、様々な自動化と、(おそらくあなたは、社内のPPAを持っています)。aptがスクリプト化されていない動作を実行すると、特に本番サービスのダウンタイムにつながる場合は、非常にイライラします。
upgrade
upgrade is used to install the newest versions of all packages
currently installed on the system from the sources enumerated in
/etc/apt/sources.list. Packages currently installed with new
versions available are retrieved and upgraded; under no
circumstances are currently installed packages removed, or packages
not already installed retrieved and installed. New versions of
currently installed packages that cannot be upgraded without
changing the install status of another package will be left at
their current version. An update must be performed first so that
apt-get knows that new versions of packages are available.
dist-upgrade
dist-upgrade in addition to performing the function of upgrade,
also intelligently handles changing dependencies with new versions
of packages; apt-get has a "smart" conflict resolution system, and
it will attempt to upgrade the most important packages at the
expense of less important ones if necessary. So, dist-upgrade
command may remove some packages. The /etc/apt/sources.list file
contains a list of locations from which to retrieve desired package
files. See also apt_preferences(5) for a mechanism for overriding
the general settings for individual packages.
sudo apt full-upgrade
は、同様のことが行われます。