From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: Bootstrapping on a new platform Date: Mon, 11 Dec 2017 12:03:56 +0100 Message-ID: <87609d34rn.fsf@gnu.org> References: <201712030017.19982.paul@boddie.org.uk> <877etx1pk9.fsf@gnu.org> <201712081440.15176.paul@boddie.org.uk> <201712081719.15396.paul@boddie.org.uk> 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]:49122) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eOLsS-0001mA-M3 for help-guix@gnu.org; Mon, 11 Dec 2017 06:04:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eOLsN-0008KT-Qg for help-guix@gnu.org; Mon, 11 Dec 2017 06:04:04 -0500 Received: from hera.aquilenet.fr ([141.255.128.1]:49025) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eOLsN-0008J7-Kp for help-guix@gnu.org; Mon, 11 Dec 2017 06:03:59 -0500 In-Reply-To: <201712081719.15396.paul@boddie.org.uk> (Paul Boddie's message of "Fri, 8 Dec 2017 17:19:14 +0100") List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Paul Boddie Cc: help-guix@gnu.org Hi Paul, Paul Boddie skribis: > This resembling what I showed before. Meanwhile in the child process log= =20 > (/tmp/guix.797) the clone call with EINVAL is this one: > > clone(child_stack=3D0xbffedfa4, flags=3DCLONE_NEWNS|CLONE_NEWUTS|CLONE_NE= WIPC| > CLONE_NEWPID|CLONE_NEWNET|SIGCHLD) =3D -1 EINVAL (Invalid argument) > > Again, this is using the 4.9.67 kernel. This suggests that namespaces are not fully supported with this kernel. The clone(2) page has this: EINVAL CLONE_NEWIPC was specified in flags, but the kernel was not conf= igured with the CONFIG_SYSVIPC and CONFIG_IPC_NS options. EINVAL CLONE_NEWNET was specified in flags, but the kernel was not co= nfigured with the CONFIG_NET_NS option. EINVAL CLONE_NEWPID was specified in flags, but the kernel was not= configured with the CONFIG_PID_NS option. EINVAL CLONE_NEWUTS was specified in flags, but the kernel was not confi= gured with the CONFIG_UTS option. Could it be one of these? HTH, Ludo=E2=80=99.