vote up 2 vote down star
1

I'm on a Windows machine and I want to run a checksum on the MySQL distribution I just got. It looks like there are products to download, an unsupported Microsoft tool, and probably other options. I'm wondering if there is a consensus for the best tool to use. This may be a really easy question, I've just never run a checksum routine before.

flag

56% accept rate

6 Answers

vote up 4 vote down check

Any MD5 will produce a good checksum to verify the file. Any of the files listed at the bottom of this page will work fine. http://en.wikipedia.org/wiki/Md5sum

link|flag
vote up 2 vote down

On MySQL.com, MD5s are listed alongside each file that you can download. For instance, MySQL "Windows Essentials" 5.1 is 528c89c37b3a6f0bd34480000a56c372.

You can download md5 (md5.exe), a command line tool that will calculate the MD5 of any file that you have locally. MD5 is just like any other cryptographic hash function, which means that a given array of bytes will always produce the same hash. That means if your downloaded MySQL zip file (or whatever) has the same MD5 as they post on their site, you have the exact same file.

link|flag
vote up 1 vote down

best and most convenient, http://beeblebrox.org/hashtab/

link|flag
vote up 1 vote down

I personally use Cygwin, which puts the entire smörgåsbord of Linux utilities at my fingertip --- there's md5sum and all the cryptographic digests supported by OpenSSL. Alternatively, you can also use a Windows distribution of OpenSSL (the "light" version is only a 1 MB installer).

link|flag
For just checking a checksum Cygwin seems a little heavy. Especially since there are 5KB executable for checking the MD5 – Nick Berardi Jan 26 at 2:52
It might be heavy but it is a valid answer, particularly when considering a Unixy program (MySQL) is involved. – Adam Hawes Jan 26 at 12:33
vote up 0 vote down

Just use win32 Checksum api. MD5 is native in Win32.

link|flag
vote up 0 vote down

Note that the above solutions will not tell you if your installation is correct only if your install.exe is correct (you can trust it to produce a correct install.)

You would need MD5 sums for each file/folder to test if the installed code has been messed with after the install completed.

WinMerg is useful to compare two installs (on two different machines perhaps) to see if one has been changed or why one is broken.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.