From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp2 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id gPfLG6okVl+iLQAA0tVLHw (envelope-from ) for ; Mon, 07 Sep 2020 12:16:42 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp2 with LMTPS id gF+pF6okVl91CgAAB5/wlQ (envelope-from ) for ; Mon, 07 Sep 2020 12:16:42 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id E881394051F for ; Mon, 7 Sep 2020 12:16:41 +0000 (UTC) Received: from localhost ([::1]:59858 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kFG4d-0004Kx-DP for larch@yhetil.org; Mon, 07 Sep 2020 08:16:39 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:45398) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kFFzy-0004Dv-Gz for help-guix@gnu.org; Mon, 07 Sep 2020 08:11:50 -0400 Received: from hera.aquilenet.fr ([2a0c:e300::1]:36824) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kFFzw-0007wB-A7 for help-guix@gnu.org; Mon, 07 Sep 2020 08:11:50 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id E085C17FD; Mon, 7 Sep 2020 14:11:43 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id KcxImGpVvgT2; Mon, 7 Sep 2020 14:11:43 +0200 (CEST) Received: from jurong (unknown [IPv6:2001:910:103f::72d]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 1104E156E; Mon, 7 Sep 2020 14:11:43 +0200 (CEST) Date: Mon, 7 Sep 2020 14:11:26 +0200 From: Andreas Enge To: Vagrant Cascadian Subject: Re: Guix on Novena Message-ID: <20200907121126.GA7342@jurong> References: <20200901093841.GA4371@jurong> <87eenlo3fj.fsf@ponder> <20200901180653.GA2323@jurong> <87zh6813yp.fsf@ponder> <20200902180548.GA15217@jurong> <87wo1c111p.fsf@ponder> <20200906084522.GA1900@jurong> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200906084522.GA1900@jurong> Received-SPF: neutral client-ip=2a0c:e300::1; envelope-from=andreas@enge.fr; helo=hera.aquilenet.fr X-detected-operating-system: by eggs.gnu.org: No matching host in p0f cache. That's all we know. X-Spam_score_int: -10 X-Spam_score: -1.1 X-Spam_bar: - X-Spam_report: (-1.1 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_NEUTRAL=0.779 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: help-guix@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: help-guix@gnu.org Errors-To: help-guix-bounces+larch=yhetil.org@gnu.org Sender: "Help-Guix" X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of help-guix-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=help-guix-bounces@gnu.org X-Spam-Score: -0.51 X-TUID: pUX4CsZbtO/Z Replying to self: On Sun, Sep 06, 2020 at 10:45:22AM +0200, Andreas Enge wrote: > Will mounting /dev/sda1 to /mnt and issuing "guix system init config.scm /mnt" > work? (The handbook suggests to do "herd start cow-store /mnt", but I forgot > what this is needed for.) Will it populate only /mnt/gnu/store, or also > /gnu/store from the place where I call "guix system init"? Since the latter > is almost full. Indeed this is a big problem: Everything is first stored in the local store: The linux source, the deblobbing scripts, the deblobbed linux-libre source, and so on; including a copy of guix as well as a grafted copy of guix. Deduplication should help a little, but it appears only at the end of the build. And being too generous with "guix gc" risks wasting hours of compilation time. Instead I should have been more generous and replaced the old micro-SD card :) On Sun, Sep 06, 2020 at 07:23:33AM -0700, Vagrant Cascadian wrote: > Thanks for working on getting some armhf build machines going! Well, it had been working previously with Guix on Debian, but the Novena support has improved so much over the years that I wanted to try the full Guix experience. If I do not manage, I can still do a Guix on Debian... Andreas