Hashes are commonly used to confirm the integrity of downloaded product binaries. The commands below demonstrate how to run a MD5 hash on Linux, Windows (with and without WSL), and AIX.
Linux
md5sum <filename>
Windows PowerShell
Get-FileHash <filename> -Algorithm MD5
Windows Subsystem for Linux (WSL)
These options require WSL on Windows 10 to be enabled with a Linux distribution installed.
Linux terminal
md5sum <filename>
Bash via PowerShell
bash -c "md5sum <filename>"
AIX
csum -h MD5 <filename>
Comments
0 comments
Please sign in to leave a comment.