How to remove the Fonts app from Ubuntu 20.04? And also how to view package name of system apps?
Asked
Active
Viewed 89 times
1 Answers
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.
BeastOfCaerbannog
- 16,703