This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
haas:spring2014:unix:projects:archive_handling [2014/02/04 09:53] – [Verify] wedge | haas:spring2014:unix:projects:archive_handling [2014/02/04 19:36] (current) – wedge | ||
---|---|---|---|
Line 89: | Line 89: | ||
You should get some sort of confirmation indicating successful submission if all went according to plan. If not, check for typos and or locational mismatches. | You should get some sort of confirmation indicating successful submission if all went according to plan. If not, check for typos and or locational mismatches. | ||
- | =====Verify===== | ||
- | <WRAP info> | ||
- | |||
- | To determine if you potentially did things correctly, the following steps can be followed: | ||
- | |||
- | ====Check compression==== | ||
- | Did you compress the resulting archive in accordance with project specifications? | ||
- | |||
- | <cli> | ||
- | lab46:~$ dd if=myarchive.tar.gz of=header.out bs=1 count=10 2>/ | ||
- | 350a25a01ac9f94d4e42eeb0cde2e31f | ||
- | </ | ||
- | |||
- | A quick way to check and see if you did everything right is to compute the MD5sum hash of the archive and see if it matches mine: | ||
- | |||
- | <cli> | ||
- | lab46:~$ md5sum myarchive.tar.gz | ||
- | cc247da7f4d4c4d29e8cc4dda2b03f10 | ||
- | lab46: | ||
- | </ | ||
- | |||
- | That is MY md5sum of the archive, in accordance with the project requirements. If your archive' | ||
- | |||
- | It also seems many have interpret the file naming criteria differently than I had intended (for example, on file size vs. conceptual size of what the images contain). If you did this, you will not get the above checksum... you will like get this one: | ||
- | |||
- | <cli> | ||
- | lab46:~$ md5sum myarchive.tar.gz | ||
- | a1eac6601e20f028ff158651359ec890 | ||
- | lab46: | ||
- | </ | ||
- | |||
- | Ultimately, I will accept either. |