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, 30 Oct 2017 10:29:29 +0100 Message-ID: <87she16l1i.fsf@gnu.org> References: <87shes92jh.fsf@gnu.org> <87inffdyt6.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]:57239) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e96O1-0000XC-FT for guix-devel@gnu.org; Mon, 30 Oct 2017 05:29:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e96Nw-0002Ya-HQ for guix-devel@gnu.org; Mon, 30 Oct 2017 05:29:37 -0400 Received: from hera.aquilenet.fr ([141.255.128.1]:47361) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1e96Nw-0002Xd-Av for guix-devel@gnu.org; Mon, 30 Oct 2017 05:29:32 -0400 In-Reply-To: (Konrad Hinsen's message of "Fri, 27 Oct 2017 14:53:39 +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 Howdy Konrad, Konrad Hinsen skribis: >> Could you test it in a VM, pass =E2=80=9Cconsole=3DttyS0=E2=80=9D as a k= ernel argument, >> and =E2=80=9C-serial stdio=E2=80=9D so that we see all the messages on t= he console? > > It took a while, but here it is. My config.scm is attached as well. [...] > (file-system > (device "192.168.56.1:/home/hinsen") > (check? #f) > (mount-point "/host/home/hinsen") > (create-mount-point? #t) > (type "nfs")) By default, file systems are automatically mounted at boot time. To avoid that, you must add: (mount? #f) > failed to start service 'file-systems' > failed to start service 'file-system-/host/home/hinsen' This is the crux of the problem: it tried and failed to mount this file system, so everything else failed as well (because the =E2=80=98file-system= s=E2=80=99 service is an essential requirement.) This is not a great failure mode, but it=E2=80=99s expected here. HTH! Ludo=E2=80=99.