How To Install md5deep on Fedora 34

md5deep is A set of cross-platform tools to compute hashes

Introduction

In this tutorial we learn how to install md5deep on Fedora 34.

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 Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install md5deep.

Install md5deep on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo dnf -y install md5deep

Install md5deep on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo yum -y install md5deep

How To Uninstall md5deep on Fedora 34

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

sudo dnf remove md5deep

md5deep Package Contents on Fedora 34

/usr/bin/hashdeep
/usr/bin/md5deep
/usr/bin/sha1deep
/usr/bin/sha256deep
/usr/bin/tigerdeep
/usr/bin/whirlpooldeep
/usr/lib/.build-id
/usr/lib/.build-id/44
/usr/lib/.build-id/44/a13f48216c4366c504799acf98d088e2b1af98
/usr/lib/.build-id/7f
/usr/lib/.build-id/7f/11b3f8aa3a4d9ed4254f11ef7f4e421463f5c3
/usr/lib/.build-id/92
/usr/lib/.build-id/92/0dc1c85885ddb1eee1d89354e685e6172090f0
/usr/lib/.build-id/b0
/usr/lib/.build-id/b0/4780052f09ff5a379f85fd74f00f08114f5b00
/usr/lib/.build-id/c4
/usr/lib/.build-id/c4/5ec1e4049dda7b9ead144b562483f71febede0
/usr/lib/.build-id/e0
/usr/lib/.build-id/e0/e0a1f885ef19a5e72d848844ba6011d65ef918
/usr/share/doc/md5deep
/usr/share/doc/md5deep/AUTHORS
/usr/share/doc/md5deep/COPYING
/usr/share/doc/md5deep/ChangeLog
/usr/share/doc/md5deep/NEWS
/usr/share/doc/md5deep/README
/usr/share/doc/md5deep/TODO
/usr/share/man/man1/hashdeep.1.gz
/usr/share/man/man1/md5deep.1.gz
/usr/share/man/man1/sha1deep.1.gz
/usr/share/man/man1/sha256deep.1.gz
/usr/share/man/man1/tigerdeep.1.gz
/usr/share/man/man1/whirlpooldeep.1.gz

References

Summary

In this tutorial we learn how to install md5deep on Fedora 34 using yum and dnf.