https://bugzilla.redhat.com/show_bug.cgi?id=1231578
Bug ID: 1231578 Summary: No valid SHA1 checksums in checksum file Product: Fedora Documentation Version: devel Component: install-guide Assignee: pbokoc@redhat.com Reporter: misterfluff@me.com QA Contact: docs-qa@lists.fedoraproject.org CC: pbokoc@redhat.com, zach@oglesby.co
Description of problem: Following the installation procedure for Fedora 22 the section in 3,3,2 (verifying checksums on Linux and OS X systems) fails.
Version-Release number of selected component (if applicable): Fedora-Live-Scientific_KDE-x86_64-22-3.iso
How reproducible: 100%
Steps to Reproduce: 1. Download Fedora-Live-Scientific_KDE-x86_64-22-3.iso from spins page 2. Download Fedora-Spins-x86_64-22-CHECKSUM 3. shasum -a 256 -c *CHECKSUM
Actual results: Fedora-Spins-x86_64-22-CHECKSUM: no properly formatted SHA1 checksum lines found
Expected results: Success, of course...:)
Additional info: Additional checksum file Fedora-Workstation-22-x86_64-CHECKSUM file gave same result. Also performed "curl https://getfedora.org/static/fedora.gpg | gpg --import" with no change in eventual result. Is the process the same for checking a spin install versus the regular workstation?
https://bugzilla.redhat.com/show_bug.cgi?id=1231578
Fredy Muñoz fredym@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |fredym@gmail.com
--- Comment #1 from Fredy Muñoz fredym@gmail.com --- The format of the `*-CHECKSUM` file is not recognized by `shasum` in Mac OS X. I solved this using the following one-liner in OS X Yosemite:
$ grep '^SHA256' *-CHECKSUM | awk -F '[()=]' '{ print $4 " " $2 }' | shasum -a 256 -c
I also posted this solution at: https://ask.fedoraproject.org/en/question/74873/cant-verify-the-image-checks...
docs-qa@lists.fedoraproject.org