Thread: Glo HD Is my Glo HD dead?
View Single Post
Old 11-26-2018, 05:25 AM   #10
frostschutz
Linux User
frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.
 
frostschutz's Avatar
 
Posts: 2,282
Karma: 6123806
Join Date: Sep 2010
Location: Heidelberg, Germany
Device: none
If you created the SD card like this: (/dev/sdx being the cardreader device)

Code:
dd bs=1M if=sdcard.image of=/dev/sdx
sync
Then you can verify it like this:

Code:
# unplug and re-plug sd card reader or clear caches
echo 3 > /proc/sys/vm/drop_caches
# compare
cmp sdcard.image /dev/sdx && echo OK
# should say EOF on /dev/sdx or OK
On Ubuntu you might have to use sudo -s first to get a root shell, or adapt above commands for use with sudo

Note I don't know what type of file davidfor gave you. Like if it's an image.gz then you have to gunzip first.
frostschutz is offline   Reply With Quote