23 lines
346 B
Markdown
23 lines
346 B
Markdown
Raspberry Pi Images
|
|
====================
|
|
|
|
|
|
Capturing Images
|
|
---------
|
|
|
|
`dd if=/dev/sdx bs=4M | bzip2 > cardsize.m.d.y.bz2`
|
|
|
|
Where:
|
|
|
|
- `sdx` = *device* name
|
|
- `cardsize` = size of the SD card intended to be used
|
|
- `m.d.y` = date in month.day.year format
|
|
|
|
|
|
Deploying Images
|
|
---------------
|
|
|
|
`bunzip2 -c cardsize.m.d.y.bz2 | dd bs=4M of=/dev/sdx`
|
|
|
|
|