I used wget to down load the file over a couple of months (bandwidth limit) via this script #! /bin/bash ls -l ./CAELinux2008.iso wget -c -P ./ ftp://cae-linux:[email protected]/distrib/caelinux2008.1/CAELinux2008.iso.md5sum wget -Q $1 -c -P ./ ftp://cae-linux:[email protected]/distrib/caelinux2008.1/CAELinux2008.iso
However I have a file that is larger than original, md5sums obviously do not match. How can one check that wget is not including errors or getting lost on file? # wget -V GNU Wget 1.11.4 Copyright (C) 2008 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://www.gnu.org/licenses/gpl.html>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Originally written by Hrvoje Niksic <[email protected]>. Currently maintained by Micah Cowan <[email protected]>. I forgot to add this, I found backup file and compared it with final and latest: CAELinux2008.v2.iso CAELinux2008.v1.iso differ: char 32769, line 1 CAELinux2008.v3.iso CAELinux2008.v1.iso differ: char 32769, line 1 CAELinux2008.v3.iso and CAELinux2008.v2.iso are identical as far as end smaller file l CAELinux2008.* -rw-r----- 1 pooru users 67 Jun 6 22:54 "CAELinux2008.cmpV2V1.txt" -rw-r----- 1 pooru users 67 Jun 6 22:55 "CAELinux2008.cmpV3V1.txt" -rw-r----- 1 pooru users 0 Jun 6 22:55 "CAELinux2008.cmpV3V2.txt" -rw-r----- 1 pooru users 249M Jun 6 22:59 "CAELinux2008.iso" -rw-r----- 1 pooru users 277 May 18 23:03 "CAELinux2008.iso.sh" -rw------- 1 pooru users 51k Apr 5 20:43 "CAELinux2008.iso.torrent" -rw-r--r-- 1 pooru users 2.7G Apr 5 23:43 "CAELinux2008.v1.iso" -rw-r--r-- 1 pooru users 441M Jun 6 22:30 "CAELinux2008.v2.iso" -rw-r----- 1 pooru users 249M Jun 6 22:28 "CAELinux2008.v3.iso" Files are todays date because of renaming.
