Last active
August 29, 2015 14:01
-
-
Save llaine/98fc29424bc5046244bb to your computer and use it in GitHub Desktop.
Install .img on sd card for CUBIEBOARD2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Use on MAC | |
| # For cubieboard2 with A20 CPU | |
| # We suppose that the sdcard is /dev/disk2 | |
| # Find disk | |
| diskutil list | |
| # Unmount the SDCARD | |
| diskutil unmountDisk /dev/disk2 | |
| # Copy on the SDCARD the IMG | |
| sudo dd if=/path/to/debian.img of=/dev/disk2 bs=1m | |
| # Wait and enjoy ! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment