Alexander Vorobiev <alexander.vorob...@gmail.com> skribis: > I modified the files (to use my paths for the cache and store) and ran > guix-daemon as root. Now it got much, much further! But still failed, it > seems while building perl. Here is the end of the log file: > > In unknown file: > ?: 5 [load-compiled/vm > "/home/alex/.cache/guile/ccache/2.0-LE-8-2.0/home/alex/src/guix/build-aux/make-binary-tarball.scm.go"] > In build-aux/make-binary-tarball.scm: > 38: 4 [#<procedure 21c0840 ()>] > In guix/store.scm: > 986: 3 [run-with-store # ...] > In build-aux/make-binary-tarball.scm: > 41: 2 [#<procedure 3961960 at build-aux/make-binary-tarball.scm:40:7 > (state)> #] > In guix/store.scm: > 933: 1 [#<procedure 4ed3f30 at guix/store.scm:932:28 (store)> #] > 624: 0 [build-things # #] > > guix/store.scm:624:0: In procedure build-things: > guix/store.scm:624:0: Throw to key `srfi-34' with args `(#<condition > &nix-protocol-error [message: "| | | bind mounting `/dev/full' to > `/shared/shape_tier3/commo/local/guix/store/828rlmpkg4bi5i28lif2a1af7g4s62yq-perl-5.16.1.drv.chroot/dev/full'" > status: 1] 4b4cae0>)'. > Makefile:4331: recipe for target 'guix-binary.x86_64-linux.tar.xz' failed
You seem to be running the daemon with --debug no? What surprises me is that the above is not an error message but a debugging message. The actual error seems to be elsewhere. > I also tried to use --disable-chroot but it also failed while building > perl. The first error message seems to be during perl's configure run: If you can run the daemon as root, then do run it as root, but without --disable-chroot; as the manual states, --disable-chroot is a last resort, and it’s only needed if you cannot run the daemon as root. In the case of Perl, I wouldn’t be surprised if its Configure script looks at stuff from the host distro in /usr/lib and so on, which can lead to a failure down the path. Ludo’.