From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Subject: bug#33639: ISO installer image is broken on i686 Date: Fri, 21 Dec 2018 21:44:31 +0100 Message-ID: <87pntumwy8.fsf@gnu.org> References: <17182683634737195681@scdbackup.webframe.org> <30813683585630400731@scdbackup.webframe.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]:47009) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gaRfN-0002KO-1u for bug-guix@gnu.org; Fri, 21 Dec 2018 15:45:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gaRfL-0004eB-35 for bug-guix@gnu.org; Fri, 21 Dec 2018 15:45:04 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:54585) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gaRfJ-0004dK-O6 for bug-guix@gnu.org; Fri, 21 Dec 2018 15:45:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <30813683585630400731@scdbackup.webframe.org> (Thomas Schmitt's message of "Thu, 20 Dec 2018 14:38:42 +0100") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Thomas Schmitt Cc: bug-xorriso@gnu.org, 33639@debbugs.gnu.org Hi, "Thomas Schmitt" skribis: > aside from my problems with the building and testing after "guix pull" > i also stand puzzled in front of the 8 files named "/gnu/.../build/vm.scm" > which all start grub-mkrescue. > > If i'd succeed in reproducing the ISO image file truncation: > Which vm.scm file would i have to modify in order to report the size of > the freshly emerged ISO image in the filesystem of the upper VM ? None of those under /gnu/store. /gnu/store is explicitly read-only. The actual source code you=E2=80=99d edit is a checkout of Guix. See . > And how to say "ls -l $target" in Guile ? In Scheme? You could use =E2=80=98scandir=E2=80=99: --8<---------------cut here---------------start------------->8--- scheme@(guile-user)> ,use (ice-9 ftw) scheme@(guile-user)> (scandir "/") $2 =3D ("." ".." "bin" "boot" "data" "dev" "etc" "gnu" "home" "lost+found" = "mnt" "proc" "root" "run" "sys" "tmp" "var") --8<---------------cut here---------------end--------------->8--- and also =E2=80=98lstat=E2=80=99, etc., but that=E2=80=99s not quite a =E2= =80=9Cshell=E2=80=9D. HTH, Ludo=E2=80=99.