atdcat command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
atdcat: command not found
or when using sudo you get the following error message
sudo: atdcat: command not found
Solutions to atdcat: command not found
How To Fix atdcat: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu atdcat is provided by libatd-ocaml-dev package.
libatd-ocaml-dev is:
ATD stands for Adjustable Type Definitions. It is a type definition language designed to accommodate a variety of programming languages and data formats by the means of target-specific annotations. It supports sum types, parametrized types and inheritance. The library provides a parser and other tools useful for manipulating ATD type definitions.
This package contains the development files needed for programming with the library.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libatd-ocaml-dev
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libatd-ocaml-dev.
sudo apt -y install libatd-ocaml-dev
Or if you have aptitude installed you can use the following command.
sudo aptitude install libatd-ocaml-dev
Summary
In this tutorial we learn how to fix atdcat command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.