How to install MD5 to Ubuntu?

How can I install MD5 in Ubuntu without using apt-get?

1

5 Answers

Ubuntu has included md5sum in their distro for several years now (always?), no need to install.

coreutils should contain md5sum. If you don't have even that installed... you have bigger problems than not being able to md5sum. (like no ls, cat, mkdir...)

Checksums calculator is a GUI tool to calculate MD5 checksums which can run under Linux, Windows and Mac OS X.

Ubuntu version

typoknig is correct in that Ubuntu comes with md5sum. It is part of the GNU coreutils package, which is included in almost every desktop Linux distro by default.

However, if for some unlikely reason coreutils is not installed, you can go to and download the package file (as well as any necessary dependencies, if you don't have those already), then install it with sudo dpkg -i <filename>, where <filename> is the name of the package file.

(This works for any other package as well - they are all available from , so if you need to install an application on some PC without an internet connection you can install packages manually if necessary. Just make sure to install the required dependencies first.)

EDIT: However, based on your earlier question, this is not actually your problem. You need to install the libssl-dev package.

Install md5sum from this

sudo apt install -y ucommon-utils

Check that it has installed with this

md5sum --version

Sample 1 - Returns md5 hash of the file

md5sum /pathToFile/file

Sample 2 - Compares two md5 hashes against each other and does something

#!/bin/bash
file1="sudo md5sum /pathToFile/file.txt"
file2="sudo md5sum /pathToFile2/file2.txt"
if [ "$file1" = "$file2" ]
then echo "Files have the same content"
else echo "Files do NOT have the same content"
fi
2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like