MATLAB: How to check the MD5 checksum of the downloaded ISO image

I have downloaded the ISO image for installation and I want to check the file's MD5 checksum. How can I get the file's checksum?

Best Answer

The following command-line utilities can be used to calculate the MD5 checksum of the given file. Change the file name (in italics) as applicable.

  • Windows

Open Command Prompt and run the following command. Make sure to put "MD5" in capital letters.

CertUtil -hashfile _R2018b_win64_dvd1.iso_ MD5
  • Linux

Open a terminal and run the following command.

md5sum _R2018b_glanxa64_dvd1.iso_
  • macOS

Open a Terminal and run the following command.

md5sum _matlab_R2018b_maci64.dmg_

It may take a few minutes for the commands to calculate the checksum.