From mboxrd@z Thu Jan 1 00:00:00 1970 From: Samuel Thibault Subject: Re: boot the Hurd with Guix Date: Fri, 1 Dec 2017 17:16:16 +0100 Message-ID: <20171201161616.jbg2cfm4svwatveg@var.youpi.perso.aquilenet.fr> References: <20171127190559.DD00C4E0022@mta-1.openmailbox.og> <87tvxafuyr.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Content-Disposition: inline In-Reply-To: <87tvxafuyr.fsf@gnu.org> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-hurd-bounces+gnu-bug-hurd=m.gmane.org@gnu.org Sender: "Bug-hurd" To: Ludovic =?utf-8?Q?Court=C3=A8s?= Cc: guix-devel@gnu.org, rennes@openmailbox.org, bug-hurd@gnu.org List-Id: guix-devel.gnu.org Hello, Congrats on the achievement :D Ludovic Courtès, on ven. 01 déc. 2017 14:17:48 +0100, wrote: > Also, in GRUB, you currently load ext2fs.static and exec explicitly. That's the normal way, yes. exec does the rest (including running startup). > BTW, the image you posted is in “raw” format. You would get a smaller > file by using the qcow2 format, which you can create with “qemu-img > create -f qcow2”. Well, using sparse files can work as well: create the image with dd if=/dev/zero of=file.img bs=1M count=1 seek=1000 and pass -S to tar so that on decompression it gets sparse too. The advantage is that standard tools (fdisk, etc.) will work on it. Samuel