README: mention prebuilt isos in the release page and how to join multiple parts of an iso into a single file

This commit is contained in:
kekrby 2022-08-28 21:32:18 +03:00
parent b410a2ae0e
commit 523a847886

View file

@ -14,3 +14,10 @@ nix build .#t2-iso-minimal
```
You need to have `nix` installed on a **Linux** host. If you are on macOS, you can use `podman` or `docker` with the `nixos/nix` image.
Prebuilt isos are also available in the [releases page](releases).
As iso files can be quite large depending on their content, they are split into multiple parts. You can join them with this command after downloading all the files for the variant you want:
```
cat t2-iso-<variant>.iso-part-* > t2-iso-<variant>.iso
```