开发者

How to verify the Checksum values with downloaded files

开发者 https://www.devze.com 2023-03-25 17:50 出处:网络
Checksum values are given in the following link for downloading Eclipse IDE: http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/indigo/R/eclipse-j开发者_JS百科ee-in

Checksum values are given in the following link for downloading Eclipse IDE:

http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/indigo/R/eclipse-j开发者_JS百科ee-indigo-win32.zip

I guess I can verify my download with the Checksum. Please anyone explain me how can I verify my download with the Checksum given.


You generate a checksum of the downloaded file on your local machine and compare it to the checksum on the website.

If you are on a windows environment I suggest that you use winMd5sum to create the MD5 checksum on your local machine.

From a file explorer you can right-click on the downloaded file and "send to" winMd5Sum and then compare.

How to verify the Checksum values with downloaded files

On linux I think most distros have a build-in md5sum batch command. You can use it like this:

md5sum <filename>

and compare result with the checksum on the website.

The calculation of MD5 checksums on large files can take some time.

0

精彩评论

暂无评论...
验证码 换一张
取 消