implantisomd5 command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
implantisomd5: command not found
or when using sudo you get the following error message
sudo: implantisomd5: command not found
Solutions to implantisomd5: command not found
How To Fix implantisomd5: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu implantisomd5 is provided by isomd5sum package.
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.
To fix this problem, we can install more using the command below.
sudo apt-get -y install isomd5sum
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install isomd5sum.
sudo apt -y install isomd5sum
Or if you have aptitude installed you can use the following command.
sudo aptitude install isomd5sum
Summary
In this tutorial we learn how to fix implantisomd5 command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.