From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 86208138010 for ; Sat, 6 Oct 2012 21:02:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 20CEAE058E for ; Sat, 6 Oct 2012 21:02:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id ACB38E0453 for ; Sat, 6 Oct 2012 19:49:21 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1A2E433D776 for ; Sat, 6 Oct 2012 19:49:21 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 617) id 0F9DC21600; Sat, 6 Oct 2012 19:49:18 +0000 (UTC) From: "Sven Vermeulen (swift)" To: gentoo-doc-cvs@lists.gentoo.org Subject: [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en/handbook: hb-install-stage.xml X-VCS-Repository: gentoo X-VCS-Files: hb-install-stage.xml X-VCS-Directories: xml/htdocs/doc/en/handbook X-VCS-Committer: swift X-VCS-Committer-Name: Sven Vermeulen Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20121006194919.0F9DC21600@flycatcher.gentoo.org> Date: Sat, 6 Oct 2012 19:49:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-doc-cvs@lists.gentoo.org Reply-to: docs-team@lists.gentoo.org X-Archives-Salt: a0f172dd-5f51-497c-96f9-9e0744a6615d X-Archives-Hash: 940b6894539e45c7f6ef7bb3b1bf1ae3 swift 12/10/06 19:49:18 Modified: hb-install-stage.xml Log: Fix bug #386475 - Use SHA512 and Whirlpool checksums for all arches except mips Revision Changes Path 1.125 xml/htdocs/doc/en/handbook/hb-install-stage.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-stage.xml?rev=1.125&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-stage.xml?rev=1.125&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-stage.xml?r1=1.124&r2=1.125 Index: hb-install-stage.xml =================================================================== RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-stage.xml,v retrieving revision 1.124 retrieving revision 1.125 diff -u -r1.124 -r1.125 --- hb-install-stage.xml 24 Jul 2012 12:12:52 -0000 1.124 +++ hb-install-stage.xml 6 Oct 2012 19:49:18 -0000 1.125 @@ -4,7 +4,7 @@ - + @@ -13,8 +13,8 @@ describe how you extract the stage3 archive and configure Portage. -12 -2012-07-24 +13 +2012-10-06
Installing a Stage Tarball @@ -146,15 +146,27 @@

If you want to check the integrity of the downloaded stage tarball, use -md5sum and compare the output with the MD5 checksum provided on the -mirror. +openssl and compare the output with the checksums provided on the +mirror. The digests files provide several checksums, each taken with a different +algorithm. The recommended ones are SHA512 and Whirlpool.

-
-# md5sum -c .DIGESTS
-: OK
+
+## Calculating the SHA512 checksum
+# openssl dgst -r -sha512 
+or
+# sha512sum 
+
+## Calculating the Whirlpool checksum
+# openssl dgst -r -whirlpool 
 
+

+Then compare the output of these commands with the value registered in the +.DIGESTS files that can be found on the mirrors as well. The values need to +match, otherwise the downloaded file might be corrupt (or the digests file is). +

+