Difference between revisions of "Commands"

From HyperSecurity Wiki
Jump to: navigation, search
(Commands for Raspberry Pi)
Line 1: Line 1:
 
How to transfer img to sdcard:
 
How to transfer img to sdcard:
 
  dd bs=1m if=imagefile.img of=/dev/sdx
 
  dd bs=1m if=imagefile.img of=/dev/sdx
 +
 +
Using GNU DD you must run the following:
 +
dd bs=1M if=imagefile.img of=/dev/sdx
 +
 +
Failure to use a capital M, will result in the following error:
 +
dd: invalid number ‘1m’

Revision as of 07:46, 29 November 2013

How to transfer img to sdcard:

dd bs=1m if=imagefile.img of=/dev/sdx

Using GNU DD you must run the following:

dd bs=1M if=imagefile.img of=/dev/sdx

Failure to use a capital M, will result in the following error:

dd: invalid number ‘1m’