0

How to remove the Fonts app from Ubuntu 20.04? And also how to view package name of system apps?

1 Answers1

0

The package name of the Fonts application is gnome-font-viewer. You can remove it using the command:

sudo apt purge gnome-font-viewer

In general, you can list the installed applications using:

apt list --installed

apt list also accepts globs for matching package names, as can be seen in man apt:

list
    list is somewhat similar to dpkg-query --list in that it can display a list of packages
    satisfying certain criteria. It supports glob(7) patterns for matching package names as well
    as options to list installed (--installed), upgradeable (--upgradeable) or all available
    (--all-versions) versions.

So you could list all installed packages containing "font" using:

apt list --installed "*font*"

and you would find gnome-font-viewer among others.