font-manager command not found

In this troubleshooting guide we learn how to fix font-manager command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

font-manager: command not found

or when using sudo you get the following error message

sudo: font-manager: command not found

Solutions to font-manager: command not found

How To Fix font-manager: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu font-manager is provided by font-manager package.

font-manager is:

Font Manager is intended to provide a way for average users to easily manage desktop fonts, without having to resort to command line tools or editing configuration files by hand. While designed primarily with the GNOME Desktop Environment in mind, it should work well with other Gtk+ desktop environments.

To fix this problem, we can install more using the command below.

sudo apt-get -y install font-manager

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install font-manager.

sudo apt -y install font-manager

Or if you have aptitude installed you can use the following command.

sudo aptitude install font-manager

Summary

In this tutorial we learn how to fix font-manager command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.