consang command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
consang: command not found
or when using sudo you get the following error message
sudo: consang: command not found
Solutions to consang: command not found
How To Fix consang: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu consang is provided by geneweb package.
geneweb is:
Geneweb allows keeping track of ancestral data. It is a powerful system for maintaining a set of data about your family history. It supports much of the GEDCOM tag system for data storage, and can be used either as your primary system for archiving genealogical data, or as a web service (through a CGI interface) for publishing your data for others to use.
To fix this problem, we can install more using the command below.
sudo apt-get -y install geneweb
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install geneweb.
sudo apt -y install geneweb
Or if you have aptitude installed you can use the following command.
sudo aptitude install geneweb
Summary
In this tutorial we learn how to fix consang command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.