From mboxrd@z Thu Jan 1 00:00:00 1970 From: Konrad Hinsen Subject: Re: NFS mounts Date: Fri, 13 Oct 2017 20:28:47 +0200 Message-ID: References: <87shes92jh.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45288) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e34hb-0007PO-W0 for guix-devel@gnu.org; Fri, 13 Oct 2017 14:28:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e34hX-0003MK-0O for guix-devel@gnu.org; Fri, 13 Oct 2017 14:28:55 -0400 In-Reply-To: <87shes92jh.fsf@gnu.org> 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: Ludovic =?utf-8?Q?Court=C3=A8s?= Cc: Guix-devel Hi Ludo, > 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. Configuration rollback is really nice BTW ;-) Konrad