Last active
August 29, 2015 14:01
-
-
Save fbarbeira/8d89d67bd74c6ab9ac76 to your computer and use it in GitHub Desktop.
ODROID eMMC burn image
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
Firstly, we have to insert the eMMC card and then unmount the disk: | |
fbarbeira@NekoStation:~$ diskutil list /dev/disk3 | |
/dev/disk3 | |
#: TYPE NAME SIZE IDENTIFIER | |
0: FDisk_partition_scheme *7.8 GB disk3 | |
1: Windows_FAT_32 NO NAME 4.3 GB disk3s1 | |
2: Linux 1.1 GB disk3s2 | |
3: Linux 2.1 GB disk3s3 | |
4: Linux 137.6 MB disk3s4 | |
fbarbeira@NekoStation:~$ diskutil unmountDisk /dev/disk3 | |
Unmount of all volumes on disk3 was successful | |
fbarbeira@NekoStation:~$ | |
1.) Terminal Command: sudo dd if=/dev/zero of=/dev/sdf bs=4M | |
2.) Terminal Command: sudo dd if=/dev/emmc_self_installer.img of=/dev/sdf bs=4m | |
If you are on a Linux, the 'm' at 'bs' parameter it's in uppercase like this way: "bs=4M" | |
3.) Terminal Command: sync | |
At the first booting, the self-installing will take about 1~2 minutes. | |
While installation, the blue LED is blinking and fan is running. | |
The blue-LED will turn off after installation. | |
Turn on again and enjoy. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment