Vincent Legoll <vincent.leg...@gmail.com> skribis: > From: Vincent Legoll <vincent.leg...@idgrilles.fr> > > * 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}.@var{system}.xz > +wget > ftp://alpha.gnu.org/gnu/guix/guixsd-usb-install-@value{VERSION}.@var{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 “Binary Installation”. I’ll comment on the rest later. Thanks, Ludo’.