Hi
Well malcolmlewis I aint as green as I am cabbage looking…
W10 / 11 is where a lot of people will be starting out so …
Windows 10 PowerShell and LibreOffice Calc & Writer to make a HASH of IT.
PS C:>get-filehash and enter the path to the ISO file.
PS C:> get-filehash
cmdlet Get-FileHash at command pipeline position 1
Supply values for the following parameters:
Path[0]: U:\Downloads\openSUSE-Leap-15.6-DVD-x86_64-Build710.3-Media.iso
Path[1]:
Algorithm Hash Path
SHA256 A74D4072E639C75CA127DF3D869C1E57BCC44A093A969550F348A3EAD561FE4F U:\Downloads\openSUSE-Leap-15.6-DVD-x86_64-Build710.3-Media.iso
PS C:> “A74D4072E639C75CA127DF3D869C1E57BCC44A093A969550F348A3EAD561FE4F”.ToLower()
a74d4072e639c75ca127df3d869c1e57bcc44a093a969550f348a3ead561fe4f You can use LibreOffice Writer to Convert to lower case of course.
Open the openSUSE-Leap-15.6-DVD-x86_64-Media.iso.sha256 in Writer, copy & paste the checksum into cell A1 of Calc,
then the powershell version into cellA2. =IF(A1=A2,“YES”,“NO”)
a74d4072e639c75ca127df3d869c1e57bcc44a093a969550f348a3ead561fe4f
a74d4072e639c75ca127df3d869c1e57bcc44a093a969550f348a3ead561fe4f
YES
You may actually see (probably) that it matches without the formula being applied.
Linux Command Line and LibreOffice Calc & Writer to make a HASH of IT.
$ sha256sum and enter the path to the ISO file.
$ sha256sum /mnt/UTILarea/DOWNLOADS/openSUSE-Leap-15.6-DVD-x86_64-Build710.3-Media.iso
a74d4072e639c75ca127df3d869c1e57bcc44a093a969550f348a3ead561fe4f /mnt/UTIL….LOADS/openSUSE-Leap-15.6-DVD-x86_64-Build710.3-Media.iso
a74d4072e639c75ca127df3d869c1e57bcc44a093a969550f348a3ead561fe4f openSUSE-Leap-15.6-DVD-x86_64-Media.iso
Open the openSUSE-Leap-15.6-DVD-x86_64-Media.iso.sha256 in Writer, copy & paste the checksum into cell A1 of Calc,
then the linux command line version into cellA2. =IF(A1=A2,“YES”,“NO”)
a74d4072e639c75ca127df3d869c1e57bcc44a093a969550f348a3ead561fe4f
a74d4072e639c75ca127df3d869c1e57bcc44a093a969550f348a3ead561fe4f
YES
You may actually see (probably) that it matches without the formula being applied.
So I did learn, thanks.
And I missed of the -c switch from the sha256sum, so now I gotta go and learn some more.