Creating a NixOS live CD/ru: Difference between revisions

From NixOS Wiki
Unabomberlive (talk | contribs)
Created page with "== Сборка == Сборка минимального установочного компакт-диска NixOS с помощью комманды <code>nix-build</code> создав этот <code>iso.nix</code>-файл. В данном примере с предустановленным Neovim."
Tags: Mobile edit Mobile web edit
FuzzyBot (talk | contribs)
Updating to match new version of source page
Line 1: Line 1:
== Мотивация ==
<div lang="en" dir="ltr" class="mw-content-ltr">
Создание модифицированного NixOS LiveCD на основе существующей рабочей установки NixOS имеет ряд преимуществ:  
== Motivation ==
* Гарантирует подлинность.  
Creating a modified NixOS LiveCD out of an existing working NixOS installation has a number of benefits:
* Нет необходимости в доступе в Интернет.  
* Ensures authenticity.
* В образ легко добавлять собственные пакеты и изменения конфигурации.
* No need for internet access.
== Сборка ==
* It is easy to add your own packages and configuration changes to the image.
Сборка минимального установочного компакт-диска NixOS с помощью комманды <code>nix-build</code> создав этот <code>iso.nix</code>-файл. В данном примере с предустановленным [[Neovim]].  
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
== Building ==
Building minimal NixOS installation CD with the <code>nix-build</code> command by creating this <code>iso.nix</code>-file. In this example with [[Neovim]] preinstalled.
</div>
<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
{ config, pkgs, ... }:
{ config, pkgs, ... }:
Line 19: Line 23:
}
}
</syntaxhighlight>
</syntaxhighlight>
Соберите образ через:
<div lang="en" dir="ltr" class="mw-content-ltr">
Build the image via:
</div>
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
nix-build '<nixpkgs/nixos>' -A config.system.build.isoImage -I nixos-config=iso.nix
nix-build '<nixpkgs/nixos>' -A config.system.build.isoImage -I nixos-config=iso.nix
</syntaxhighlight>
</syntaxhighlight>
В качестве альтернативы используйте Nix [[Flakes]] для создания установочного образа ISO, используя ветку <code>nixos-24.05</code> в качестве источника nixpkgs:
<div lang="en" dir="ltr" class="mw-content-ltr">
Alternatively, use Nix [[Flakes]] to generate a ISO installation image, using the <code>nixos-24.05</code> branch as nixpkgs source:
</div>
{{file|flake.nix|nix|<nowiki>
{{file|flake.nix|nix|<nowiki>
{
{
Line 43: Line 51:
}
}
</nowiki>}}
</nowiki>}}
Следующие комманды сгенерируют iso-образ:
<div lang="en" dir="ltr" class="mw-content-ltr">
The following commands will generate the iso-image:
</div>
<syntaxhighlight lang="console">
<syntaxhighlight lang="console">
# git init
# git init
Line 49: Line 59:
# nix build .#nixosConfigurations.exampleIso.config.system.build.isoImage
# nix build .#nixosConfigurations.exampleIso.config.system.build.isoImage
</syntaxhighlight>
</syntaxhighlight>
Готовый ISO-образ может быть найден в <code>result/</code>
<div lang="en" dir="ltr" class="mw-content-ltr">
The resulting image can be found in <code>result</code>:
</div>
<syntaxhighlight lang="console">
<syntaxhighlight lang="console">
$ ls result/iso/
$ ls result/iso/
nixos-24.05.20240721.63d37cc-x86_64-linux.iso
nixos-24.05.20240721.63d37cc-x86_64-linux.iso
</syntaxhighlight>
</syntaxhighlight>
<span id="Testing_the_image"></span>
=== Тестирование образа ===
=== Тестирование образа ===
Чтобы просмотреть содержимое ISO-образа:
<syntaxhighlight lang="console">
<syntaxhighlight lang="console">
$ mkdir mnt
$ mkdir mnt
Line 65: Line 74:
$ umount mnt
$ umount mnt
</syntaxhighlight>
</syntaxhighlight>
Чтобы загрузиться в ISO-оьраз в эмуляторе:
<div lang="en" dir="ltr" class="mw-content-ltr">
To boot the ISO image in an emulator:
</div>
<syntaxhighlight lang="console">
<syntaxhighlight lang="console">
$ nix-shell -p qemu
$ nix-shell -p qemu
$ qemu-system-x86_64 -enable-kvm -m 256 -cdrom result/iso/nixos-*.iso
$ qemu-system-x86_64 -enable-kvm -m 256 -cdrom result/iso/nixos-*.iso
</syntaxhighlight>
</syntaxhighlight>
=== SSH ===
<div lang="en" dir="ltr" class="mw-content-ltr">
В вашем <tt>iso.nix</tt>
===SSH===
In your <tt>iso.nix</tt>:
</div>
<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
{
{
Line 83: Line 96:
}
}
</syntaxhighlight>
</syntaxhighlight>
<span id="Static_IP_Address"></span>
=== Статический IP-адрес ===
=== Статический IP-адрес ===
Статические IP-адреса можно задать в образе. Это может быть полезно для установки на VPS.
<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
{
{
Line 102: Line 112:
}
}
</syntaxhighlight>
</syntaxhighlight>
=== Ускорение сборки ===
<div lang="en" dir="ltr" class="mw-content-ltr">
Процесс сборки является медленным из-за сжатия.
=== Building faster ===
The build process is slow because of compression.
</div>


Вот некоторые сроки для <code>nix-build</code>:
<div lang="en" dir="ltr" class="mw-content-ltr">
Here are some timings for <code>nix-build</code>:
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
{| class="wikitable" style="margin:auto"
{| class="wikitable" style="margin:auto"
|+ Compression results
|+ Compression results
Line 119: Line 134:
| <code>xz -Xdict-size 100%</code> (default) || 450s || 43%
| <code>xz -Xdict-size 100%</code> (default) || 450s || 43%
|}
|}
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
<div lang="en" dir="ltr" class="mw-content-ltr">
See also: [https://gist.github.com/baryluk/70a99b5f26df4671378dd05afef97fce mksquashfs benchmarks]
See also: [https://gist.github.com/baryluk/70a99b5f26df4671378dd05afef97fce mksquashfs benchmarks]
</div>
</div>


Если вам не важен размер итогового файла, вы можете использовать более быстрое сжатип добавив это в файл <code>iso.nix</code>:
<div lang="en" dir="ltr" class="mw-content-ltr">
If you don't care about file size, you can use a faster compression
by adding this to your <code>iso.nix</code>:
</div>
<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
{
{
Line 129: Line 148:
}
}
</syntaxhighlight>
</syntaxhighlight>
==См. Также==
<div lang="en" dir="ltr" class="mw-content-ltr">
* [https://nixos.org/manual/nixos/stable/index.html#sec-building-image Мануал NixOS: Сборка NixOS (Live) ISO].
==See also==
* [https://nixos.org/manual/nixos/stable/index.html#sec-building-image NixOS Manual: Building a NixOS (Live) ISO].
</div>
[[Category:NixOS]]
[[Category:NixOS]]
[[Category:Deployment]]
[[Category:Deployment]]
[[Category:Cookbook]]
[[Category:Cookbook]]

Revision as of 19:32, 22 July 2024

Motivation

Creating a modified NixOS LiveCD out of an existing working NixOS installation has a number of benefits:

  • Ensures authenticity.
  • No need for internet access.
  • It is easy to add your own packages and configuration changes to the image.

Building

Building minimal NixOS installation CD with the nix-build command by creating this iso.nix-file. In this example with Neovim preinstalled.

{ config, pkgs, ... }:
{
  imports = [
    <nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix>

    # Provide an initial copy of the NixOS channel so that the user
    # doesn't need to run "nix-channel --update" first.
    <nixpkgs/nixos/modules/installer/cd-dvd/channel.nix>
  ];
  environment.systemPackages = [ pkgs.neovim ];
}

Build the image via:

nix-build '<nixpkgs/nixos>' -A config.system.build.isoImage -I nixos-config=iso.nix

Alternatively, use Nix Flakes to generate a ISO installation image, using the nixos-24.05 branch as nixpkgs source:

flake.nix
{
  description = "Minimal NixOS installation media";
  inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
  outputs = { self, nixpkgs }: {
    nixosConfigurations = {
      exampleIso = nixpkgs.lib.nixosSystem {
        system = "x86_64-linux";
        modules = [
          ({ pkgs, modulesPath, ... }: {
            imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix") ];
            environment.systemPackages = [ pkgs.neovim ];
          })
        ];
      };
    };
  };
}

The following commands will generate the iso-image:

# git init
# git add flake.nix
# nix build .#nixosConfigurations.exampleIso.config.system.build.isoImage

The resulting image can be found in result:

$ ls result/iso/
nixos-24.05.20240721.63d37cc-x86_64-linux.iso

Тестирование образа

$ mkdir mnt
$ sudo mount -o loop result/iso/nixos-*.iso mnt
$ ls mnt
boot  EFI  isolinux  nix-store.squashfs  version.txt
$ umount mnt

To boot the ISO image in an emulator:

$ nix-shell -p qemu
$ qemu-system-x86_64 -enable-kvm -m 256 -cdrom result/iso/nixos-*.iso

SSH

In your iso.nix:

{
  ...
  # Enable SSH in the boot process.
  systemd.services.sshd.wantedBy = pkgs.lib.mkForce [ "multi-user.target" ];
  users.users.root.openssh.authorizedKeys.keys = [
    "ssh-ed25519 AaAeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee username@host"
  ];
  ...
}

Статический IP-адрес

{
  ...
  networking = {
    usePredictableInterfaceNames = false;
    interfaces.eth0.ip4 = [{
      address = "64.137.201.46";
      prefixLength = 24;
    }];
    defaultGateway = "64.137.201.1";
    nameservers = [ "8.8.8.8" ];
  };
  ...
}

Building faster

The build process is slow because of compression.

Here are some timings for nix-build:

Compression results
squashfsCompression Time Size
lz4 100s 59%
gzip -Xcompression-level 1 105s 52%
gzip 210s 49%
xz -Xdict-size 100% (default) 450s 43%

If you don't care about file size, you can use a faster compression by adding this to your iso.nix:

{
  isoImage.squashfsCompression = "gzip -Xcompression-level 1";
}