patatt command not found

In this troubleshooting guide we learn how to fix patatt command not found error message

Introduction

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

patatt: command not found

or when using sudo you get the following error message

sudo: patatt: command not found

Solutions to patatt: command not found

How To Fix patatt: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu patatt is provided by patatt package.

patatt is:

This utility allows an easy way to add end-to-end cryptographic attestation to patches sent via mail. It does so by adapting the DKIM email signature standard to include cryptographic signatures via the X-Developer-Signature email header.

If your project workflow doesn’t use patches sent via email, then you don’t need this and should simply start signing your tags and commits.

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

sudo apt-get -y install patatt

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

You can also use apt command to install patatt.

sudo apt -y install patatt

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

sudo aptitude install patatt

Summary

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