回答:
apt full-upgrade
と同じ機能を実行しapt-get dist-upgrade
ます。
ふさわしい男
full-upgrade (apt-get(8))
full-upgrade performs the function of upgrade but will remove currently installed packages if this is needed to upgrade the system as a whole.
男がガット
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. The dist-upgrade command may therefore 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.
apt dist-upgrade
(私はそれを試したばかりです)またはあなたがすることができますapt full-upgrade
、そして、あなたは彼らが同じことをすると言っています。
apt
はapt-get
コマンドのエイリアスです。sources.debian.org/src/apt/1.6.1/cmdline/apt.cc/?hl=74#L74(実際に呼び出されたマクロはリポジトリから欠落しているようです)
最初の選択肢としてaptを使用しますが、スクリプトを作成する場合はapt-getを使用します。Apt-getの出力はより安定しています(つまり、出力を自動的に解析するスクリプトを壊さないように、出力形式は可能な限りそのままにしておきます)。Apt-getには、aptでは使用できない低レベルのコマンドもいくつかあります。
aptとapt-getのマニュアルページでは、full-upgradeとdist-upgradeの説明が少し異なりますが、おそらく同じコマンドです(aptはdist-upgradeをfull-upgradeのエイリアスとして受け入れます)。これは、apt-getsの安定性の良い例です。aptでは、より使いやすい名前に変更されましたが、apt-getでは、古いスクリプトとの互換性を損なわないように名前が変更されません。
apt
代わりにapt-get
です。help.ubuntu.com/16.04/serverguide/package-management.htmlとhelp.ubuntu.com/14.04/serverguide/package-management.htmlを比較してください。