Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Platform-releng/How to check integrity of downloads

< Platform-releng
Revision as of 13:36, 21 October 2013 by Unnamed Poltroon (Talk) (Initial contents)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Verifying integrity of downloads

Downloads can be verified using md5sum or sha1sum, a Unix command line tool provided in the GNU Textutils package. Windows binary versions are available such as at etree.org.

  • Most downloads have an associated link "(md5)" to a *.md5file containing its MD5 checksum and another link "(sha1)" to a *.sha1 file containing its SHA1 checksum. Download these files, such as from Eclipse download page, into the same directory as the downloaded archive file.
  • Execute the command "md5sum -c <zipfilename>.md5" or "sha1sum -c <zipfilename>.sha1". The result "<zipfilename>: OK" is indicative of an intact download.

Back to the top