Re: verify debian12 signature
Franco Martelli <[email protected]>
| Newsgroups | gmane.linux.debian.devel.cd |
|---|---|
| Message-ID | <[email protected]> |
On 13/06/24 at 08:54, Thomas Schmitt wrote: > Then i'd compute the SHA256 of the .iso file > sha256sum debian-12.5.0-amd64-netinst.iso > and compare it with the checksum string which is listed for the .iso file > in SHA256SUMS. The comparison can be done directly by "sha256sum" command using the "-c" option. Download both .iso and SHA256SUMS files in the same directory then use this command: ~$ sha256sum --ignore-missing -c SHA256SUMS debian-12.5.0-amd64-DVD-1.iso: OK Cheers,