ratt command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ratt: command not found
or when using sudo you get the following error message
sudo: ratt: command not found
Solutions to ratt: command not found
How To Fix ratt: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ratt is provided by ratt package.
ratt is:
ratt (“Rebuild All The Things!”) operates on a Debian .changes file of a just-built package, identifies all reverse-build-dependencies and rebuilds them with the .debs from the .changes file.
The intended use-case is, for example, to package a new snapshot of a Go library and verify that the new version does not break any other Go libraries/binaries.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ratt
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ratt.
sudo apt -y install ratt
Or if you have aptitude installed you can use the following command.
sudo aptitude install ratt
Summary
In this tutorial we learn how to fix ratt command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.