Validate checksum in Linux.
For example there is one file FileName.txt in server with following checksum, sha1 : 69c7b0f0d46dfc7a0q693e725534cd20f6d98a1e md5 : 9e9021c288c0f107ed772baa6ac49f86 You downloaded it in your pc and now you want to compare it’s checksum with server. 1. Validate sha1 checksum Open terminal. Type following command $ sha1sum FileName.txt | grep 69c7b0f0d46dfc7a0e693e725534cd20f6d98a1e You will get following output if… Read more