adasockets-config command not found

In this troubleshooting guide we learn how to fix adasockets-config command not found error message

Introduction

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

adasockets-config: command not found

or when using sudo you get the following error message

sudo: adasockets-config: command not found

Solutions to adasockets-config: command not found

How To Fix adasockets-config: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu adasockets-config is provided by libadasockets10-dev package.

libadasockets10-dev is:

This package provides a binding for socket services to be used with GNAT (the GNU Ada compiler). One can use it to write clients and servers that will talk with programs written in Ada or any other programming language.

This package provides the Ada programmer with headers and libraries used to build Ada programs that use sockets services.

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

sudo apt-get -y install libadasockets10-dev

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

You can also use apt command to install libadasockets10-dev.

sudo apt -y install libadasockets10-dev

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

sudo aptitude install libadasockets10-dev

Summary

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