Was going through my usual process of writing a Raspbian image to a microSD card using sudo dd bs=1m if=/my_pi-zero.img of=/dev/rdisk3 conv=sync
on my mac and I received the following message
dd: /dev/rdisk3: Device not configured
4451+0 records in
4450+0 records out
4666163200 bytes transferred in 582.264839 secs (8013816 bytes/sec)
Copied /Users/Matthew/Desktop/Photo-G/Pi-Zero.img to disk3
Typically dd: /dev/rdisk3: Device not configured
is not part of that message.
However, when I plug the SD card into my Pi everything seems to be normal, could there be something wrong under the hood or should I just ignore it?
EDIT: It's also worth noting that the image file is 7.96gb so the transfer is being cut off partway through. The microSD card is 8gb and I haven't previously had a problem like this with this script.
records in
andrecords out
means the last incomplete block is truncated. This may or may not cause problems. Raspbian at one stage produced images with partial blocks (although this has since been fixed) but Etcher handles these. – Milliways Oct 18 '18 at 05:21dd
command I mentioned below – Matt Oct 18 '18 at 05:23bs=1m
and an image file that is7.96gb
one would expect about 8152 records in/out - the fact that you have only just over half suggests that yes, the SD card is faulty in some catastrophic way – Jaromanda X Oct 18 '18 at 07:46