From 523a847886abd6d3c967f1ae8fa17009f23215e0 Mon Sep 17 00:00:00 2001 From: kekrby Date: Sun, 28 Aug 2022 21:32:18 +0300 Subject: [PATCH] README: mention prebuilt isos in the release page and how to join multiple parts of an iso into a single file --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 488b345..9393a62 100644 --- a/README.md +++ b/README.md @@ -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-.iso-part-* > t2-iso-.iso +```