Hi,

jd wrote:
> Perhaps there's just something iffy with the installation media I used?

I deem this unlikely, given that you report no errors during installation.

Nevertheless:

Which installation image did you use ?

If the installation medium with that image is still at hand, what checksum
do you get from it ?

You will have to curb the checksumming to the size of the image.
E.g.:

  $ ls -l debian-11.5.0-amd64-netinst.iso
  -rw-r--r-- 1 thomas thomas 400556032 Sep 10 14:40 
debian-11.5.0-amd64-netinst.iso
  $ expr 400556032 / 2048
  195584
  $ dd if=/dev/sdd bs=2048 count=195584 | sha512sum
  195584+0 records in
  195584+0 records out
  400556032 bytes (401 MB) copied, 2.54246 s, 158 MB/s
  
6a6607a05d57b7c62558e9c462fe5c6c04b9cfad2ce160c3e9140aa4617ab73aff7f5f745dfe51bbbe7b33c9b0e219a022ad682d6c327de0e53e40f079abf66a
  -

Then read the image's official SHA512 from its SHA512SUMS file. With above
ISO this is at
  https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/SHA512SUMS
Compare it with the result of above run:

  $ test 
6a6607a05d57b7c62558e9c462fe5c6c04b9cfad2ce160c3e9140aa4617ab73aff7f5f745dfe51bbbe7b33c9b0e219a022ad682d6c327de0e53e40f079abf66a
 = 
6a6607a05d57b7c62558e9c462fe5c6c04b9cfad2ce160c3e9140aa4617ab73aff7f5f745dfe51bbbe7b33c9b0e219a022ad682d6c327de0e53e40f079abf66a
 && echo MATCH
  MATCH


Have a nice day :)

Thomas

Reply via email to