2

How would I be able to verify the MD5 for a file that I downloaded on RPi?

Matthew Moisen
  • 745
  • 5
  • 11
  • 25

2 Answers2

4

openssl output is incompatible with almost everything else and impossible to use to check anything except maybe a single file. the standard way to generate MD5 checksum is to use:

$ md5sum file1 file2 file3 sommorefilez* >files.md5

the result is saved to the file using the output redirect with > sign and you may check the checksums later using:

$ md5sum -c files.md5

and just in case you'd prefer SHA checksums there are sha1sum, sha256sum and so on...

lenik
  • 11,533
  • 2
  • 32
  • 37
1

In the terminal type openssl md5 yourfilehere.

Jacobm001
  • 11,904
  • 7
  • 47
  • 58