From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: Daemon update Date: Wed, 27 May 2015 22:51:42 +0200 Message-ID: <87r3q1bv6p.fsf@gnu.org> References: <87siasirgo.fsf@gnu.org> <87a8wy5oet.fsf@gnu.org> <877fs0k9ox.fsf@gnu.org> <87d21mhww4.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41039) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YxiIn-00030c-Ue for guix-devel@gnu.org; Wed, 27 May 2015 16:51:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YxiIj-0004DH-L5 for guix-devel@gnu.org; Wed, 27 May 2015 16:51:49 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:41410) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YxiIj-0004D3-Hf for guix-devel@gnu.org; Wed, 27 May 2015 16:51:45 -0400 In-Reply-To: (Alexander Vorobiev's message of "Wed, 27 May 2015 15:10:59 -0500") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Alexander Vorobiev Cc: guix-devel@gnu.org Alexander Vorobiev 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 [#] > In guix/store.scm: > 986: 3 [run-with-store # ...] > In build-aux/make-binary-tarball.scm: > 41: 2 [# (state)> #] > In guix/store.scm: > 933: 1 [# #] > 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 `(# &nix-protocol-error [message: "| | | bind mounting `/dev/full' to > `/shared/shape_tier3/commo/local/guix/store/828rlmpkg4bi5i28lif2a1af7g4s6= 2yq-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=E2=80=99s only needed if you cannot run the daemon as root. In the case of Perl, I wouldn=E2=80=99t 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=E2=80=99.