Ubuntu の apt upgrade で "not upgraded" と表示された時の対処法
きっかけ
Ubnntu を利用しており、ソフトパッケージの差分更新時に not upgraded
と表示され、気持ち悪かったので修正しました。
表示例
自分の環境では以下のように表示されていました。
$ sudo apt upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
The following packages have been kept back:
docker-ce
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
の部分です。
上記では docker-ce
のパッケージ更新が保留されていました。
修正方法
こちらは単に更新が保留
されているだけで、明示的にパッケージをインストールすること(apt install docker-ce
)で解消されます。
以下が、修正時の例です。
$ sudo apt install docker-ce
インストール完了後、 update
と upgrade
を実行し、not upgraded
の有無を確認してみます。
$ sudo apt upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
表示されなくなりました!
Author And Source
この問題について(Ubuntu の apt upgrade で "not upgraded" と表示された時の対処法), 我々は、より多くの情報をここで見つけました https://qiita.com/kewpie134134/items/6dd789bf8fbe81512af9著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .