How To Install md5deep on CentOS 7

In this tutorial we learn how to install md5deep on CentOS 7. md5deep is A set of cross-platform tools to compute hashes

Introduction

In this tutorial we learn how to install md5deep on CentOS 7.

What is md5deep

This is md5deep, a set of cross-platform tools to compute hashes, or message digests, for any number of files while optionally recursively digging through the directory structure. It can also take a list of known hashes and display the filenames of input files whose hashes either do or do not match any of the known hashes. This version supports MD5, SHA-1, SHA-256, Tiger, and Whirlpool hashes.

We can use yum or dnf to install md5deep on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install md5deep.

Install md5deep on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install md5deep using yum by running the following command:

sudo yum -y install md5deep

Install md5deep on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install md5deep using dnf by running the following command:

sudo dnf -y install md5deep

How To Uninstall md5deep on CentOS 7

To uninstall only the md5deep package we can use the following command:

sudo dnf remove md5deep

References

Summary

In this tutorial we learn how to install md5deep on CentOS 7 using yum and dnf.