johang / sd-card-images

Scripts to build bootable SD card images with Debian for various single-board computers
https://sd-card-images.johang.se
GNU General Public License v3.0
140 stars 32 forks source link

Readme update noting zcat on mac osx #126

Closed tc0nn closed 1 month ago

tc0nn commented 3 months ago

You may want to give an example zcat execution on mac OSX... Something like: zcat < boot-orange_pi_zero2.bin.gz < debian-bookworm-arm64-uom3nu.bin.gz > sd-card.img

johang commented 3 months ago

Or you can just do in three steps:

$ gunzip boot-orange_pi_zero2.bin.gz
$ gunzip debian-bookworm-arm64-uom3nu.bin.gz
$ cat boot-orange_pi_zero2.bin debian-bookworm-arm64-uom3nu.bin > sd-card.img