gentrigrams command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gentrigrams: command not found
or when using sudo you get the following error message
sudo: gentrigrams: command not found
Solutions to gentrigrams: command not found
How To Fix gentrigrams: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gentrigrams is provided by libkf5sonnet-dev-bin package.
libkf5sonnet-dev-bin is:
Sonnet is a Qt based library that offers easy access to spell checking using various plugin based backends. It is part of KDE Frameworks 5.
This package contains the utility programs related to the Sonnet framework.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libkf5sonnet-dev-bin
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libkf5sonnet-dev-bin.
sudo apt -y install libkf5sonnet-dev-bin
Or if you have aptitude installed you can use the following command.
sudo aptitude install libkf5sonnet-dev-bin
Summary
In this tutorial we learn how to fix gentrigrams command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.