From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: NFS mounts Date: Mon, 16 Oct 2017 15:09:25 +0200 Message-ID: <87inffdyt6.fsf@gnu.org> References: <87shes92jh.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]:54183) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e459C-0002CQ-LE for guix-devel@gnu.org; Mon, 16 Oct 2017 09:09:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e4596-0006yM-UX for guix-devel@gnu.org; Mon, 16 Oct 2017 09:09:34 -0400 Received: from hera.aquilenet.fr ([141.255.128.1]:43072) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1e4596-0006xT-NP for guix-devel@gnu.org; Mon, 16 Oct 2017 09:09:28 -0400 In-Reply-To: (Konrad Hinsen's message of "Fri, 13 Oct 2017 20:28:47 +0200") 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" To: Konrad Hinsen Cc: Guix-devel Hello, Konrad Hinsen skribis: >> Indeed, the initrd would need an extra package, like this: >> >> diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm > ... > >> Can you try if it works? > > It compiles, and I can boot the new configuration without any trouble. > > Next, I added an NFS filesystem: > > (file-system > (device "192.168.56.1:/home/hinsen") > (mount-point "/host/home/hinsen") > (create-mount-point? #t) > (type "nfs")) > > For "device" I put the string that I would also give to "mount" as an > argument. That's perhaps completely wrong. After rebooting, I get the > error message > > No file system check procedure for 192.168.56.1:/home/hinsen; skipping > > So I added > > (check? #f) > > to the file system specification. Another reboot, more error messages: > > Service udev has been started. > failed to start service 'ncsd' > failed to start service 'guix-daemon' > ... > > plus many others. The only services that start are "udev" and > "loopback". I can't log in. Could you test it in a VM, pass =E2=80=9Cconsole=3DttyS0=E2=80=9D as a kern= el argument, and =E2=80=9C-serial stdio=E2=80=9D so that we see all the messages on the = console? (You can do =E2=80=98guix system vm=E2=80=99 and then modify the command li= ne that it returns.) > Configuration rollback is really nice BTW ;-) Isn=E2=80=99t it? :-) Ludo=E2=80=99.