Computers for industrial control and automation systems

Installation

Operating system installation

This guide explains how to write OS image to the Pigeon computer eMMC storage.

Download

Latest official Raspbian image for all Pigeon computers:

Older files:

For Windows users

  1. Download and run the rpiboot_setup.exe to install the drivers and boot tool.
  2. Plug your host PC USB into the Pigeon USB DEVICE port.
  3. Apply power to the Pigeon and Windows should now find the hardware and install the driver. LED ACT should be on.
  4. Once the driver install is complete run the RPiBoot.exe tool that was previously installed. LED ACT should turn off. rpi-boot
  5. After a few seconds the Pigeon will pop up under Windows as a disk (USB mass storage device).
  6. Use Win32DiskImager to write OS image to the drive "boot".
    win32-disk-imager
  7. Once you have written an OS image make sure nothing is plugged into the USB device port.
  8. Power cycling the Pigeon.
  9. Login (user:root, password: kristech) and enter the command "raspi-config", select "Expand Filesystem", exit from raspi-config.
  10. Reboot system.

For Linux users

  1. Install libusb and Raspberry tools
    sudo apt-get install git
    git clone --depth=1 https://github.com/raspberrypi/usbboot
    cd usbboot
    sudo apt-get install libusb-1.0-0-dev
    make
    sudo ./rpiboot
  2. Plug your host PC USB into the Pigeon USB DEVICE port.
  3. Apply power to the Pigeon and the rpiboot tool will discover the Pigeon.
  4. You will see a new device appear. This is commonly /dev/sdb but it could be another location such as /dev/sdc, so check in /dev/ before You will write OS image.
  5. Write an OS image:
    sudo dd if=os_image.img of=/dev/sdb bs=4MiB
    sudo sync
  6. Once you have written an OS image make sure nothing is plugged into the USB device port.
  7. Power cycling the Pigeon.
  8. Login (user:root, password: kristech) and enter the command "raspi-config", select "Expand Filesystem", exit from raspi-config.
  9. Reboot system.

Overlay filesystem

If you want to protect the filesystem from writes see Overlay filesystem. When the overlay filesystem is enabled any data generated after startup is only saved in RAM and will be lost upon reboot.

Links

Back to Top