NixOS on ARM: Difference between revisions

imported>Pancho
m Getting the installer: Drop stale section with dead link and no longer current info.
imported>Pancho
m Installation steps: Express file copying with cp instead of dd for both simplicity and performance (try it!)
Line 279: Line 279:
The .img files can be directly written to a microSD/SD card (minimal recommended size: 4 GB) using dd.
The .img files can be directly written to a microSD/SD card (minimal recommended size: 4 GB) using dd.


<syntaxhighlight lang="bash">sudo dd if=sd-image-armv7l-linux.img of=/dev/sdX</syntaxhighlight>
<syntaxhighlight lang="bash">sudo cp sd-image-armv7l-linux.img /dev/sdX</syntaxhighlight>
Replace <code>/dev/sdX</code> with the path to your SD card device.
Replace <code>/dev/sdX</code> with the path to your SD card device.