Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save mortalis13/e94a11e5f71c64cac316458606b74b75 to your computer and use it in GitHub Desktop.

Select an option

Save mortalis13/e94a11e5f71c64cac316458606b74b75 to your computer and use it in GitHub Desktop.

An example of how to write a LibreELEC OS image on a SD card.

  1. Download and unpack the image:
cd /sdcard
wget http://archive.libreelec.tv/LibreELEC-RPi2.arm-9.2.6.img.gz
gunzip -k LibreELEC-RPi2.arm-9.2.6.img.gz
  1. Enter to the super user mode, find the SD card device (usually mmcblk1), and copy the image with dd (specifying the input_file/output_file/block_size)
su
dd if=LibreELEC-RPi2.arm-9.2.6.img of=/dev/block/mmcblk1 bs=4M
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment