クローンビルダープロセス:Nixを使用してチャンネルを更新すると、操作は許可されません(Linux上)。

クローンビルダープロセス:Nixを使用してチャンネルを更新すると、操作は許可されません(Linux上)。

私はアーチLinuxを使用しています4.19.15-1-lts #1 SMP Sun Jan 13 13:53:52 CET 2019 x86_64 GNU/Linux。 Nix: nix-env (Nix) 2.2

最近更新されたバージョンより前には問題はありませんでした2.2。私はアップグレード/更新のために常に次の2つのステップに従います。

$ nix-channel --update
...
$ nix-env --upgrade
...

...しかし、最近のアップデートの後、それがうまくいく方法を見つける2.2ことができません。nix-channel --update常に次のエラーが発生します。

error: cloning builder process: Operation not permitted
error: unable to start build process
error: program '/nix/store/876x7a35qbn3q062b6zcz6va88m0990d-nix-2.2/bin/nix-env' failed with exit code 1

...以前の作業をロールバックしても、次のようになります。

$ nix-channel --update 
unpacking channels...
error: cloning builder process: Operation not permitted
error: unable to start build process
error: program '/nix/store/876x7a35qbn3q062b6zcz6va88m0990d-nix-2.2/bin/nix-env' failed with exit code 1
$ nix-channel --rollback 
switching from generation 40 to 39
$ nix-channel --update 
unpacking channels...
error: cloning builder process: Operation not permitted
error: unable to start build process
error: program '/nix/store/876x7a35qbn3q062b6zcz6va88m0990d-nix-2.2/bin/nix-env' failed with exit code 1

更新されたリストの内容は次のとおりです。

$ nix-channel --list 
nixpkgs https://nixos.org/channels/nixpkgs-unstable

...結局、削除すらできませんでした。

$ nix-channel --remove nixpkgs 
uninstalling 'nixpkgs-19.03pre165281.7d864c6bd63'
error: cloning builder process: Operation not permitted
error: unable to start build process
error: program '/nix/store/876x7a35qbn3q062b6zcz6va88m0990d-nix-2.2/bin/nix-env' failed with exit code 1

再インストールを避けたいです。


修正する

待つことができない!ああ:)

続行して現在のインストールを削除しました。新しくインストールしたとき、基本的に同じ結果が得られました。

$ sh <(curl https://nixos.org/nix/install) --no-daemon 
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  2476  100  2476    0     0   5417      0 --:--:-- --:--:-- --:--:--  5406
downloading Nix 2.2.1 binary tarball for x86_64-linux from 'https://nixos.org/releases/nix/nix-2.2.1/nix-2.2.1-x86_64-linux.tar.bz2' to '/tmp/nix-binary-tarball-unpack.n5vqvsi4Uq'...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 22.5M  100 22.5M    0     0  4016k      0  0:00:05  0:00:05 --:--:-- 4377k
Note: a multi-user installation is possible. See https://nixos.org/nix/manual/#sect-multi-user-installation
performing a single-user installation of Nix...
directory /nix does not exist; creating it by running 'mkdir -m 0755 /nix && chown x80486 /nix' using sudo
[sudo] password for x80486: 
copying Nix to /nix/store.................................
initialising Nix database...
Nix: creating /home/x80486/.nix-profile
installing 'nix-2.2.1'
error: cloning builder process: Operation not permitted
error: unable to start build process
/tmp/nix-binary-tarball-unpack.n5vqvsi4Uq/unpack/nix-2.2.1-x86_64-linux/install: unable to install Nix into your default profile

...通常、Linux(または特に使用されるディストリビューション)とNixに何が起こっているようです。

ベストアンサー1

次の提案に従ってください。このコメント問題を解決する:

sysctl kernel.unprivileged_userns_clone=1

おすすめ記事