Skip to content

Instantly share code, notes, and snippets.

@dd86k
Last active April 16, 2025 15:43
Show Gist options
  • Save dd86k/d58bc87ca2ecc4ee240245366287080c to your computer and use it in GitHub Desktop.
Save dd86k/d58bc87ca2ecc4ee240245366287080c to your computer and use it in GitHub Desktop.
Quick guide/reminder when installing phone images onto disks

Phone Image Installation Guide

Examples

  • With dd: tar -Oxz image.tar.gz | dd of=... status=progress
  • With pv: pv image.tar.gz | tar -Oxz | dd of=...
    • Not a tar archive: pv image.img.xz | xzcat | dd bs=2M of=/dev/sde1

Important flags

Flag Description
-O Redirect output to stdout
-x Extract file

Formats

Extension Format tar flag
Automatic -a
bz2 bzip2 -j
xz xz -J
gz gzip -z
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment