How do I verify a FreeBSD installation ISO image (ie. FreeBSD-13.0-RELEASE-amd64-dvd1.iso) burned --- or written - to a USB stick?
The USB stick is created by the following command:
I've tried by issuing the following commands and the checksum is different from the downloaded original ISO file.
RESULT is: = e20b9dd4270da6bf4db9cf9f7675e3a8
Method #1
... and
Method #2
Both Methods #1 and #2 produced the same checksum, but it is different from the downloaded original.
I'd like to know how to verify whether a burned USB stick is the same as download original ISO file.
The USB stick is created by the following command:
# dd if=FreeBSD-13.0-RELEASE-amd64-dvd1.iso of=/dev/da0 bs=1m conv=sync
I've tried by issuing the following commands and the checksum is different from the downloaded original ISO file.
# md5 FreeBSD-13.0-RELEASE-amd64-dvd1.iso
RESULT is: = e20b9dd4270da6bf4db9cf9f7675e3a8
Method #1
# dd if=/dev/da0 bs=1m | head -c 4784017408 | md5
... and
Method #2
# dd if=/dev/da0 of=/check/FreeBSDcheck.iso bs=4096 count=1167973 conv=sync
# md5 /check/FreeBSDcheck.iso
Both Methods #1 and #2 produced the same checksum, but it is different from the downloaded original.
I'd like to know how to verify whether a burned USB stick is the same as download original ISO file.