Questions tagged [checksums]

A checksum or hash sum

is a fixed-size datum computed from an arbitrary block of digital data for the purpose of detecting accidental errors that may have been introduced during its transmission or storage. The integrity of the data can be checked at any later time by recomputing the checksum and comparing it with the stored one. If the checksums match, the data were almost certainly not altered (either intentionally or unintentionally).

The procedure that yields the checksum from the data is called a checksum function or checksum algorithm. A good checksum algorithm will yield a different result with high probability when the data is accidentally corrupted; if the checksums match, the data is very likely to be free of accidental errors.

79 questions
359
votes
6 answers

How do I check the SHA1 hash of a file?

How do I check the SHA1 hash of a file?
Lincity
  • 25,749
40
votes
7 answers

Create checksum sha256 of all files and directories?

I need to create a list of checksums of the files that are inside a directory, including any subdirectories. The command that I try to execute is the following: sha256sum -b * Usage: -b = Read in Binary. * = Specifies that you must verify all…
MarianoM
  • 705
24
votes
6 answers

How to check crc of a file?

I was looking this question and appears everything but crc. Is there a good Ubuntu way around there to do this?
Alter Lagos
  • 1,209
15
votes
3 answers

Generate SHA, MD5 and other checksums from properties menu (added "Digests" tab)

I am trying to restore a function that I had on my last box. It added a tab in the properties menu of any file called "Digests". From there I could choose any/all of the hash formats, click hash and it would generate said checksums right there.…
Chuck
13
votes
1 answer

MD5 hash for ubuntu .iso (14.04 through 18.10)

I cant find the MD5 hash for ubuntu-14.04.1-desktop-amd64.iso on this website. Am I looking in the right place?
11
votes
6 answers

Can two different firmware files have same md5 sum?

Can two different binary files have the same md5 sum? One binary firmware file have different version number and marked as revised, small bug fixed. But both files have same md5 sum, I would assume that revised file can't have the same md5 sum - can…
minto
  • 831
9
votes
1 answer

Where is the Checksum for Ubuntu 18.04?

Where is the checksum for the Ubuntu 18.04 Desktop ISO image (ubuntu-18.04-desktop-amd64.iso)? I don't see it anywhere on the download page or on the release notes page. The Checksums on the cd image page are for server and arm versions, but do not…
Enterprise
  • 12,792
7
votes
1 answer

Should I be worried about "warning: checksum areas are greater than image size. Invalid section table?" messages during kernel upgrade?

I just ran the command sudo apt-get dist-upgrade and this was the output: Reading package lists... Done Building dependency tree Reading state information... Done Calculating upgrade... Done The following NEW packages will be installed …
user364819
6
votes
2 answers

Recursive Checksumming

I've been using the following command line to do recursive checksumming of directories. It seems to get the job done, but still being a newbie I've been wondering, are there any potential problems with doing it this way? Is it possible for this…
6
votes
1 answer

"The ./boot/grub/efi.img file failed the MD5 checksum verification."

Related question: Why does integrity check fail for the 12.04.1 Alternate ISO? I downloaded and wrote ubuntu-12.04.3-server-amd64.iso to a USB key, but when I boot from it and select "Check disc for defects", I get the error: "The…
6
votes
4 answers

Is there a checksum utility equivalent to Hashtab for Windows?

I use Hashtab in Windows to compute the hash of a file. All I have to do is right click on the file, click properties and in the properties menu there would be a tab called Hash and it contains the hash of the file in different formats like MD5,…
Ufoguy
  • 1,268
4
votes
3 answers

How to automate the process of checking an Ubuntu ISO SHA256sum

I know that I can get the SHA256 sums (and MD5 sums) from http://releases.ubuntu.com/ as they are provided now within the folders, but is there any way of automating the checking process so that the download of the SHA sum is automatic and so is the…
user364819
4
votes
1 answer

MD5 says the checksum is correct but still "Check finished: errors found in 2 files"

I'm attempting to dual boot windows 8.1 and ubuntu but I can't quite seem to create a USB boot drive without errors. Twice now I have downloaded ubuntu-14.04-desktop-amd64 from the official website, twice have the file's checksums been…
cancub
  • 41
4
votes
0 answers

Where are the instructions for checking md5 checksums?

Possible Duplicate: How can I check the integrity of a downloaded Ubuntu CD? Where do I find instructions for making sure the Ubuntu ISO I download is correct?
Jeff
  • 41
  • 2
3
votes
2 answers

Search file with known sha1 sum

I have to find specific file with known sha1 sum. I know in which folder the file should be, but there are sub-folders (up to max-depth 4). I know more or less parts of filename (contains words "project" and "screenshoot"), but there are various…
1
2 3 4 5 6