dmarc-cat command not found

In this troubleshooting guide we learn how to fix dmarc-cat command not found error message

Introduction

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

dmarc-cat: command not found

or when using sudo you get the following error message

sudo: dmarc-cat: command not found

Solutions to dmarc-cat: command not found

How To Fix dmarc-cat: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu dmarc-cat is provided by dmarc-cat package.

dmarc-cat is:

This utility decodes the standard XML reports sent by providers to the rua record configured in DMARC. It is useful to make sense of reports that are otherwise very difficult to read.

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

sudo apt-get -y install dmarc-cat

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

You can also use apt command to install dmarc-cat.

sudo apt -y install dmarc-cat

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

sudo aptitude install dmarc-cat

Summary

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