How to check if a package is essential / part of base Ubuntu (v18.04.5) install?
Eg. I keep seeing Ceph and RADOS updates in my weekly software updater GUI, ie...
➜ ~ apt list --upgradable
Listing... Done
libcephfs2/bionic-updates 12.2.13-0ubuntu0.18.04.8 amd64 [upgradable from: 12.2.13-0ubuntu0.18.04.7]
librados2/bionic-updates 12.2.13-0ubuntu0.18.04.8 amd64 [upgradable from: 12.2.13-0ubuntu0.18.04.7]
ubuntu-drivers-common/bionic-updates 1:0.8.6.3~0.18.04.1 amd64 [upgradable from: 1:0.5.2.5]
I don't remember if I installed these myself as some experiment some time ago or if they are part of the base / essential Ubuntu install. If they are not part of the base install or essential "normal" Ubuntu systems, then I'd like to remove these packages. Is there any way to tell (esp. re. how to tell what else would be affected by its deletion)?
libcephfs2
andlibrados2
packages were not installed with your Ubuntu system. You installed them later; you can remove them whenever you wish. Theubuntu-drivers-common
package was part of your original install. – user535733 Aug 21 '21 at 22:13apt-cache rdepends
– guiverc Aug 21 '21 at 22:39Essential
themselves, but will be pulled in by otherEssential
packages. As long as they are marked "automatically installed", they will be automatically removed as soon as they become unnecessary. – Simon Richter Aug 22 '21 at 17:07