Project

General

Profile

Support #598

Install Intel Galileo Stock Linux Image With Arch

Added by Daniel Curtis about 9 years ago. Updated almost 9 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
Installation
Target version:
Start date:
04/17/2015
Due date:
% Done:

100%

Estimated time:
3.00 h
Spent time:

Description

This is a guide for installing the stock pre-compiled Yocto Linux image provided by Intel

Prepare the MicroSD Card

  • Install dosfstools:
    sudo pacman -S dosfstools
    
  • To start, find the device path for the microsd card. insert the microsd card into the workstation, open a terminal and run:
    dmesg
    
    • Example output
      [13103.012976] mmc0: new SD card at address 8ccd
      [13103.052022] Driver 'mmcblk' needs updating - please use bus_type methods
      [13103.057749] mmcblk0: mmc0:8ccd YV04F 1.89 GiB
      
    • NOTE: This example will use /dev/mmcblk0 for the microsd device path.
  • (Optional) Zero the MicroSD card:
    sudo dd if=/dev/zero of=/dev/mmcblk0
    
  • Now create a partition for the MicroSD card:
    sudo fdisk /dev/mmcblk0
    o
    n
    p
    1
    [Enter]
    [Enter]
    t
    b
    a
    w
    
  • Next format the micro SD card to fat32:
    sudo mkfs.msdos /dev/mmcblk0p1
    
  • Next, download and extract the LINUX_IMAGE_FOR_SD_Intel_Galileo_v1.0.4.zip file:
    mkdir ~/galileo-img && cd ~/galileo-img
    wget http://downloadmirror.intel.com/24355/eng/SDCard.1.0.4.tar.bz2
    tar xjf SDCard.1.0.4.tar.bz2
    
  • Mount the micro SD card and copy the extracted stock Linux files over to the micro SD card:
    sudo mkdir /mnt/sdcard
    sudo mount /dev/mmcblk0p1 /mnt/sdcard
    sudo cp -r ~/galileo-img/image-full-galileo/* /mnt/sdcard/
    sudo sync
    
  • Unmount the MicroSD card:
    sudo umount /mnt/sdcard
    

At this point the stock Yocto Linux provided by Intel is installed and ready for use; complete with persistent sketches and wireless support.

Resources

#1

Updated by Daniel Curtis about 9 years ago

  • Project changed from GNU/Linux Administration to Intel Galileo
  • Description updated (diff)
  • Category set to Installation
  • Status changed from New to In Progress
  • Target version set to Arch Linux
  • % Done changed from 0 to 50
#2

Updated by Daniel Curtis about 9 years ago

  • Description updated (diff)
#3

Updated by Daniel Curtis about 9 years ago

  • Description updated (diff)
#4

Updated by Daniel Curtis about 9 years ago

  • Description updated (diff)
  • Status changed from In Progress to Resolved
  • % Done changed from 50 to 100
#5

Updated by Daniel Curtis about 9 years ago

  • Description updated (diff)
#6

Updated by Daniel Curtis almost 9 years ago

  • Status changed from Resolved to Closed

Also available in: Atom PDF