ferret command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ferret: command not found
or when using sudo you get the following error message
sudo: ferret: command not found
Solutions to ferret: command not found
How To Fix ferret: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ferret is provided by ferret package.
ferret is:
GNU Ferret (Free Entity Relationship and Reverse Engineering Tool) serves to edit data models. These can be implemented within a range of relational databases such as PostgreSQL or MySQL.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ferret
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ferret.
sudo apt -y install ferret
Or if you have aptitude installed you can use the following command.
sudo aptitude install ferret
Summary
In this tutorial we learn how to fix ferret command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.