How To Install isomd5sum on Ubuntu 22.04

In this tutorial we learn how to install isomd5sum on Ubuntu 22.04. isomd5sum is ISO9660 checksum utilities

Introduction

In this tutorial we learn how to install isomd5sum on Ubuntu 22.04.

What is isomd5sum

isomd5sum is:

isomd5sum is a set of utilities for implanting a MD5 checksum in an ISO (or any block device), then verifying the checksum later. isomd5sum is not simply an MD5 of the entire ISO; it checksums the data inside a standard ISO9660 image and write block checksum information to an ISO9660 header, that will carry over to burning the CD.

This package contains the utilities implantisomd5 and checkisomd5.

There are three methods to install isomd5sum on Ubuntu 22.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install isomd5sum Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install isomd5sum using apt-get by running the following command:

sudo apt-get -y install isomd5sum

Install isomd5sum Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install isomd5sum using apt by running the following command:

sudo apt -y install isomd5sum

Install isomd5sum Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install isomd5sum using aptitude by running the following command:

sudo aptitude -y install isomd5sum

How To Uninstall isomd5sum on Ubuntu 22.04

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

sudo apt-get remove isomd5sum

Uninstall isomd5sum And Its Dependencies

To uninstall isomd5sum and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:

sudo apt-get -y autoremove isomd5sum

Remove isomd5sum Configurations and Data

To remove isomd5sum configuration and data from Ubuntu 22.04 we can use the following command:

sudo apt-get -y purge isomd5sum

Remove isomd5sum configuration, data, and all of its dependencies

We can use the following command to remove isomd5sum configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge isomd5sum

References

Summary

In this tutorial we learn how to install isomd5sum package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.