gnatcoll_db2ada command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gnatcoll_db2ada: command not found
or when using sudo you get the following error message
sudo: gnatcoll_db2ada: command not found
Solutions to gnatcoll_db2ada: command not found
How To Fix gnatcoll_db2ada: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gnatcoll_db2ada is provided by libgnatcoll-db-bin package.
libgnatcoll-db-bin is:
The gnatcoll-db library allows Ada programs to send SQL queries to SQLite or PostGreSQL databases.
This package contains command-line tools.
- gnatcoll_db2ada generates Ada sources depending on libngatcoll-sqlite or libgnatcoll-postgres.
- gnatinspect runs in a source tree and generate a database of cross-references.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libgnatcoll-db-bin
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libgnatcoll-db-bin.
sudo apt -y install libgnatcoll-db-bin
Or if you have aptitude installed you can use the following command.
sudo aptitude install libgnatcoll-db-bin
Summary
In this tutorial we learn how to fix gnatcoll_db2ada command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.