Ubuntu 16.04のすべてのパッケージを更新した後にこれを入手しました。
All packages are up to date.
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
The following package was automatically installed and is no longer required:
ubuntu-core-launcher
Use 'Sudo apt autoremove' to remove it.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
apt-get autoremove
を使用してubuntu-core-launcherを削除しても安全ですか?
Ubuntu-core-launcherパッケージは、まだ作成中のnew snappyパッケージインストーラーに使用されます。これでSudo dpkg -s ubuntu-core-launcher
を実行すると、優先度情報にオプションであること、つまり削除できることを示します。
現在、脆弱性の問題があります ここ は、Ubuntu 16.04 ltsに影響し、その必要性最新バージョン hereでversion 1.0.27以降にアップグレードします。
ただし、元に戻すのも非常に簡単です。
Sudo apt update && Sudo apt-get install ubuntu-core-launcher
削除するのも簡単です:
Sudo apt-get purge --auto-remove ubuntu-core-launcher
したがって、Sudo apt autoremove
を実行すると実行されます。
ubuntu-core-launcherは、デフォルトのイメージの一部であるsnapパッケージ形式のバックエンドであるsnapdの依存関係でした。しかし、少し前にubuntu-core-launcherはsnap-confineの移行パッケージになりました。 snapd v2.17.1ubuntu1の時点では、snapdは明らかに、ubuntu-core-launcherではなくsnap-confineに直接依存しているため、ubuntu-core-launcherはシステム上の何も必要なく、明示的にインストールされないため、自動削除の候補になります。とにかくスナップ制限を設定することだけが目的なので、Sudo apt autoremove
で安全に削除できます。