Difference between revisions of "Minnowboard:Preparing microSD Card"

From eLinux.org
Jump to: navigation, search
m (Obtaining and extracting the image)
m (Method -1: Using Image Writer for Windows)
Line 87: Line 87:
  
 
To double check if the image was written properly, open 'Disk Management' utility in Windows. Follow [http://www.softwareok.com/?seite=faq-Win-7&faq=15 this link] here on how to open it. You should see an outout similar to the one shown below:
 
To double check if the image was written properly, open 'Disk Management' utility in Windows. Follow [http://www.softwareok.com/?seite=faq-Win-7&faq=15 this link] here on how to open it. You should see an outout similar to the one shown below:
 +
  
 
[[File:Minnow_windows_sdcard_success.png]]
 
[[File:Minnow_windows_sdcard_success.png]]
 
  
 
===Method-2: Using Roadkil Disk Image===
 
===Method-2: Using Roadkil Disk Image===

Revision as of 18:54, 14 November 2013

Mlogo.png Back to the MinnowBoard home page


Getting Started:

Where to buy? - for advice on buying the MinnowBoard.

MinnowBoard Basics - box contents, different components on the board

microSD Card Setup - for information on how to prepare the microSD Card used to boot your MinnowBoard.

Booting Angstrom Embedded Linux Distribution - running Angstrom and accessing the MinnowBoard serial console on Windows/Mac/Linux

Beginner Guides - you are up and running, now what can you do?.

MinnowBoard Google Group - Got any questions? Feel free to ask here

Linux

Please note that this section is completely optional. The MinnowBoard already comes with a microSD card that is preloaded with a working Angstrom Linux image. In case you want to use a newer image or want to program the microSD from scratch, this section covers it all. These steps were created using an Ubuntu 12.10 64-bit system.

Step-1:

First download the latest Angstrom Linux image for MinnowBoard using the following link:

Latest Angstrom Image for the MinnowBoard

At the time of writing this guide, the latest image available for download was 'Angstrom-development-GNOME-image-eglibc-ipk-v2012.12-minnow-2013.07.10.img.xz'

Step-2:

Insert the microSD card into a microSD compatible writer in your desktop computer. Now, identify the disk device filename for your microSD card. You can do this by opening the Disk Utility application (sometimes also called Disks) in Ubuntu and clicking on the microSD card entry. See the Device field to determine the raw device name of your microSD card. Note that this device name should specify an entire disk device (e.g, /dev/sde), and not an individual disk partition (e.g, /dev/sde1)

Step-3:

Now, make sure all possible disk partitions from the microSD card are unmounted by typing the command below into your terminal:

$ sudo umount /dev/sdX?* 

Here 'sdX' stands for the raw device id of the microSD card.

Step-4:

Now unpack the image to the microSD card by typing the command below in a terminal window:

$ xzcat Angstrom-development-GNOME-image-eglibc-ipk-v2012.12-minnow-2013.07.10.img.xz | sudo dd of=/dev/sdX


Windows

Obtaining and extracting the image

This section will explain how to download the latest Angstrom image and how to convert the downloaded .xz format image to .img .

Step-1:

First, download the latest Angstrom Linux image from the link below:

Latest Angstrom Image


Step-2:

Next, download the 7-zip utility from the link below and install it:

7zip


Step-3:

Decompress the previously downloaded Angstrom image using 7-zip as shown in Figure - 1 below. The resulting file should have an extension '.img' .

Figure-1: Decompressing the image

Writing the image to the microSD card

This section explains the three different methods that can be used to write an Angstrom image to the microSD card.

Method -1: Using Image Writer for Windows

This is the recommended method to be used. Should this method not work out for you, scroll down below and give the other methods a shot.


Step-1:

Image Writer for Windows is needed to write the .img file to a microSD card. Download and install Image Writer using the link below: :

Image Writer for Windows


Step-2:

Insert the mircoSD card into the computer using an appropriate adapter. Next, launch the Image Writer software we just installed earlier.

Note:- You may need to run Image Writer as Administrator! Right-click on the file, and select 'Run as Administrator'


Step-3:

Select the Angstrom image and write it to the microSD card as shown in Figure - 2 below:


Figure-2: Writing the image to microSD card


To double check if the image was written properly, open 'Disk Management' utility in Windows. Follow this link here on how to open it. You should see an outout similar to the one shown below:


Minnow windows sdcard success.png

Method-2: Using Roadkil Disk Image

If method -1 does not work for you, give this method a shot.


Step-1:

Disk Image is needed to write the .img file to a microSD card. Download and install Disk Image using the link below: :

Roadkil's Disk Image


Step-2:

Insert the mircoSD card into the computer using an appropriate adapter. Next, launch the Disk Image software we just installed earlier.

Note:- You may need to run Image Writer as Administrator! Right-click on the file, and select 'Run as Administrator'


RoadKil's Disk Image


Step-3:

Select the Angstrom image in the 'source file' tab. Then, select the microSD card in the 'Write Image to' tab. Next, click on the 'Start' button to write the image to the microSD card:


Selecting the Angstrom image


Writing the image to microSD card


Method -3: Using dd for Windows

This is a bit complex method in itself. If both of the earlier methods don't work out for you, then give this a shot.


Step-1:

dd for Windows is a windows port of the linux utility dd. Download it from here:


Step-2:

Extract the downloaded package and you should see 'dd.exe' file. It is advised to move this file to a location which can be easily conveniently accessed using the Command Prompt. In my case I moved it to the C:\Temp directory along with the Angstrom image.

Dd windows minnow 1.png


Step-2:

Next run Command Prompt(aka cmd) as an administrator. Refer this section for more information on how to do it. Navigate to the directory where you have stored the 'dd.exe' file via the command prompt. Next run the command below in the prompt:

dd --list

This command lists all the disks residing or attached currently on the computer.


Step-3:

Now insert the microSD card in the computer using an appropriate adapter. Repeat Step -2 again and observe the difference in output.


Dd windows minnow 2.png


The most important information that we need to infer from this is the drive letter of the microSD card. In my case it is 'e'.


Step-3:

Now, the command to write the Angstrom image to microSD card is :

dd bs=1M if=<path to image> od=<microSD card drive letter>.

In, my case the command became:

dd bs=1M if=production-Angstrom-development-GNOME-image-eglibc-ipk-v2012.12-minnow-2013.07.10.img od=e.


Dd windows minnow 3.png


Note:- First, I have directly used the Angstrom image name instead of providing the path as both the dd.exe and Angstrom image are in the same folder. Second, I have used 'of' instead of od and also a different destination header ' \\?\DeviceHarddiskVolume11 ' than the drive letter 'e'. That header actually points to the drive 'e' only. This is un-necessarily a bit more complex than the above command(I realized this later on)


Formatting a microSD card with already an Angstrom image on it

Once you a write an Angstrom image to a microSD card and want to for some reason erase the contents of the microSD card or use it for some other purpose, you cannot just plugin into a Windows computer and format it like you are used to doing. You will not be able to see the microSD card like you would normally do when you plug in a USB flash drive. This is because the new partitions created on the microSD card while writing the Angstrom image are in a file format which cannot be natively read by Windows.

This section shows how you can accomplish the same in Windows.

Step-1:

Go to the Start/Windows icon and search for Command Prompt(aka cmd). Now run it as an administrator by right clicking on it and selecting the same.

Mac

Step-1:

First, download the latest Angstrom Linux image from the link below:

Latest Angstrom Image


Step-2:

Next, install the “The Unarchiver” application(it is free) from the app store on Mac OS X as shown in Figure - 1

Figure-1: The Unarchiver


Step-3:

Then unpack the downloaded angstrom image using the unarchiver application as shown below in Figure -2

Figure-2: Unpacking the Angstrom image


Step-4:

Insert the microSD card into a microSD compatible writer in your computer. Now, identify the disk device filename for your microSD card. You can do this by typing the command below, before and after you insert the microSD card and comparing the outputs to see the newly added device:

$ df-h

Note:- If you notice closely, the microSD card entry will be in the form of /dev/diskNsX where 'N' and 'X' are numbers. diskNsX is basically the device id of your microSD card. So, to obtain the raw device id from this, remove the 's' and 'X' from the device id. The raw device id should be in the form of diskN .


Step-5:

Now, make sure all possible disk partitions from the microSD card are unmounted by typing the command below into your terminal: $ sudo umount /dev/diskN?* Here 'diskN' stands for the raw device id of the microSD card.


Step-6:

Now unpack the image to the microSD card by typing the command below in a terminal window:

$ sudo dd bs=1m if=Angstrom-development-GNOME-image-eglibc-ipk-v2012.12-minnow-2013.07.10.img of=/dev/rdiskN 

Note:- In the above command we subtly replaced “diskN” with “rdiskN” because in the latter case, you are writing to a buffered device and hence the process becomes much faster!