mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-22 05:56:15 +02:00
reword documentation on nix-store --export
(#10713)
- add links to definitions of terms - one sentence per line - be more specific about which store is used for the import - clearly distinguish store paths and store objects - make a recommendation to use `nix-copy-closure` for efficient SSH transfers
This commit is contained in:
parent
e0bfa6c55f
commit
209d75529c
1 changed files with 13 additions and 9 deletions
|
@ -8,16 +8,20 @@
|
||||||
|
|
||||||
## Description
|
## Description
|
||||||
|
|
||||||
The operation `--export` writes a serialisation of the specified store
|
The operation `--export` writes a serialisation of the given [store objects](@docroot@/glossary.md#gloss-store-object) to standard output in a format that can be imported into another [Nix store](@docroot@/store/index.md) with [`nix-store --import`](./import.md).
|
||||||
paths to standard output in a format that can be imported into another
|
|
||||||
Nix store with `nix-store --import`. This is like `nix-store
|
|
||||||
--dump`, except that the [Nix Archive (NAR)][Nix Archive] produced by that command doesn’t
|
|
||||||
contain the necessary meta-information to allow it to be imported into
|
|
||||||
another Nix store (namely, the set of references of the path).
|
|
||||||
|
|
||||||
This command does not produce a *closure* of the specified paths, so if
|
> **Warning**
|
||||||
a store path references other store paths that are missing in the target
|
>
|
||||||
Nix store, the import will fail.
|
> This command *does not* produce a [closure](@docroot@/glossary.md#gloss-closure) of the specified store paths.
|
||||||
|
> Trying to import a store object that refers to store paths not available in the target Nix store will fail.
|
||||||
|
>
|
||||||
|
> Use [`nix-store --query`](@docroot@/command-ref/nix-store/query.md) to obtain the closure of a store path.
|
||||||
|
|
||||||
|
This command is different from [`nix-store --dump`](./dump.md), which produces a [Nix archive](@docroot@/glossary.md#gloss-nar) that *does not* contain the set of [references](@docroot@/glossary.md#gloss-reference) of a given store path.
|
||||||
|
|
||||||
|
> **Note**
|
||||||
|
>
|
||||||
|
> For efficient transfer of closures to remote machines over SSH, use [`nix-copy-closure`](@docroot@/command-ref/nix-copy-closure.md).
|
||||||
|
|
||||||
[Nix Archive]: @docroot@/store/file-system-object/content-address.md#serial-nix-archive
|
[Nix Archive]: @docroot@/store/file-system-object/content-address.md#serial-nix-archive
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue