Home Linux Commands How to Verify SHA256 Checksum of File in Linux

How to Verify SHA256 Checksum of File in Linux

Internet security is one of the most important aspects when it comes to the world wide web. There has been constant research and development to improve the security of applications and files on the Internet and thus to prevent malicious use.

Downloadable files over the Internet are often the target of attacks on the Internet. As thousands and thousands of people download these files regularly, it becomes especially important to protect such files.

In this article, we will learn about checksums and how they can be used to authenticate a downloaded file from the Internet.

What is a SHA256 Checksum?

A Checksum is a cryptographic signature of a file. It is basically a string that uniquely represents the file; thus if a file is ‘tampered‘ with or ‘modified‘, its checksum value will change and the user will know that the file has been changed.

There are a number of mathematical algorithms for generating Checksum for a file in Linux. One such algorithm which is very popularly used is SHA256, which stands for ‘Secure Hash Algorithm 256‘ and was developed by the United States National Security Agency.

This algorithm breaks down the data of the file into small-sized parts and creates and combines the hash values for each part to create the checksum value. The SHA256 Checksum is usually provided in a text file or directly as a string along with the main file, in its download section on the Internet.

Verifying SHA256 Checksum of a File in Linux

Let’s take an example of Ubuntu Groovy (20.10) ISO file download and try to verify its checksum. Note that along with the ISO files, the text file ‘SHA256SUMS‘ is provided which contains the checksum values.

Download Ubuntu File with Checksum
Download Ubuntu File with Checksum

Download the ISO file for Ubuntu 20.10 desktop and the file SHA256SUMS in the same folder and go to the folder where they are downloaded.

$ wget http://releases.ubuntu.com/groovy/ubuntu-20.10-desktop-amd64.iso
$ wget http://releases.ubuntu.com/groovy/SHA256SUMS
$ cd ~/Downloads

To generate a checksum of the ISO file, run the following:

$ sha256sum ubuntu-20.10-desktop-amd64.iso
Generate Checksum of Downloaded File
Generate Checksum of Downloaded File

To compare the checksum to the value in the file SHA256SUMS, run the command with the '-c' flag. This will take all the checksums in the file, compare them with the corresponding filename, and print the filename that matches the checksum.

$ sha256sum -c SHA256SUMS
Compare Checksum of File with SHA256SUMS
Compare Checksum of File with SHA256SUMS

As seen above, the ISO file matches the original checksum, and hence we can be sure that the file was not modified or tampered with in any way during the download.

The other output is regarding the 2nd checksum in the file: for the live server ISO file which is not downloaded and hence the command prints those errors.

Conclusion

Today we learned how to verify the sha256 checksum of a file in Linux. Make sure you check out the manual page of sha256sum (by running ‘man sha256sum‘) to learn more in-depth about the command.

$ man sha256sum

Thanks for reading and let us know your thoughts or questions in the comments below!

Ravi Saive
I am an Experienced GNU/Linux expert and a full-stack software developer with over a decade in the field of Linux and Open Source technologies. Founder of TecMint.com, LinuxShellTips.com, and Fossmint.com. Over 150+ million people visited my websites.

Each tutorial at UbuntuMint is created by a team of experienced writers so that it meets our high-quality standards.

Was this article helpful? Please add a comment to show your appreciation and support.

8 thoughts on “How to Verify SHA256 Checksum of File in Linux”

    • @Markus,

      You need to install coreutils package on your Linux distribution.

      $ sudo apt install coreutils         [On Debian, Ubuntu and Mint]
      $ sudo yum install coreutils         [On RHEL/CentOS/Fedora and Rocky Linux/AlmaLinux]
      $ sudo emerge -a sys-apps/coreutils  [On Gentoo Linux]
      $ sudo apk add coreutils             [On Alpine Linux]
      $ sudo pacman -S coreutils           [On Arch Linux]
      $ sudo zypper install coreutils      [On OpenSUSE]    
      
      Reply
      • On Linux disks are files. (e.g. /dev/sdX) it should work. The place where it is problematic is where a compressed image is provided and then decompressed before copying to the disk.

        Reply
  1. And what if the checksum is provided in some format other than a file? for example what if they just provide some text on a web page?

    Reply
    • @Tfj,

      Then you can run the sha256sum by mentioning the hash on the command itself and compare the results with the hash on the website as shown.

      $ sha256sum ubuntu-20.10-desktop-amd64.iso 3ef833828009fb69d5c584f3701d6946f89fa304757b7947e792f9491caa270e ubuntu-20.10-desktop-amd64.iso
      
      Reply

Leave a Reply to Markus K Cancel reply

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published or shared. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.