From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH] Enhance USB install Date: Tue, 26 Jul 2016 15:10:07 +0200 Message-ID: <877fc88s0g.fsf@gnu.org> References: <1468419848-15393-1-git-send-email-vincent.legoll@gmail.com> <1468419848-15393-2-git-send-email-vincent.legoll@gmail.com> 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]:43777) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bS27o-0006aZ-PB for guix-devel@gnu.org; Tue, 26 Jul 2016 09:10:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bS27n-0006vb-La for guix-devel@gnu.org; Tue, 26 Jul 2016 09:10:20 -0400 In-Reply-To: <1468419848-15393-2-git-send-email-vincent.legoll@gmail.com> (Vincent Legoll's message of "Wed, 13 Jul 2016 16:24:08 +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: Vincent Legoll Cc: guix-devel@gnu.org, Vincent Legoll Vincent Legoll skribis: > From: Vincent Legoll > > * doc/guix.texi (USB install): add download & verify subsection, Sorry for the delay! First some comments on the verification, which I think should be treated in a separate commit: > This image contains a single partition with the tools necessary for an > installation. It is meant to be copied @emph{as is} to a large-enough > -USB stick. > +USB stick. It can also be used to install GuixSD in a QEmu virtual > +machine (@pxref{USB storage Installation in a VM}). > + > +To download and verify this image, follow these steps: > + > +@enumerate > +@item > +Download the image & signature files using the @command{wget} command: > + > +@example > +wget ftp://alpha.gnu.org/gnu/guix/guixsd-usb-install-@value{VERSION}.@va= r{system}.xz > +wget ftp://alpha.gnu.org/gnu/guix/guixsd-usb-install-@value{VERSION}.@va= r{system}.xz.sign > +@end example > + > +@item > +Get the PGP key using the @command{gpg} command: > + > +@example > +gpg --keyserver keys.gnupg.net --recv-keys 3D9AEBB5 > +@end example > + > +@item > +Check download integrity using the @command{gpg} command: > + > +@example > +gpg --verify guixsd-usb-install-@value{VERSION}.@var{system}.xz.sig > +@end example I took a slightly different approach in commit debc6360e111e8efc8a938b2aef28e5b3616ada8, where I essentially copied the text from =E2=80=9CBinary Installation=E2=80=9D. I=E2=80=99ll comment on the rest later. Thanks, Ludo=E2=80=99.