This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
copying_arm_images_to_boot_media_using_a_linux_pc [2015/07/01 15:09] andrew created |
copying_arm_images_to_boot_media_using_a_linux_pc [2015/07/01 15:12] (current) andrew |
||
|---|---|---|---|
| Line 5: | Line 5: | ||
| <code>journalctl -f</code> | <code>journalctl -f</code> | ||
| - | Put your CF card into a reader attach to your Linux PC. You should see the device name pop up | + | Put your CF card into a reader attached to your Linux PC. You should see the device name pop up |
| exit journalctl with ctrl-c | exit journalctl with ctrl-c | ||
| Line 11: | Line 11: | ||
| Decompress your image | Decompress your image | ||
| - | <code>xz -d <image name></code> | + | <code>sudo xz -d <image name></code> |
| Write your image to the CF card | Write your image to the CF card | ||
| - | <code>dd if=<image name> of=<drive name> bs=1M</code> | + | <code>sudo dd if=<image name> of=<drive name> bs=1M</code> |
| + | |||
| + | example: <code>sudo dd if=vamp-Fedora-Minimal-armhfp-22-20150627-sda.raw of=/dev/sdb bs=1M</code> | ||