From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1NLIeG-0003ZZ-UX for garchives@archives.gentoo.org; Thu, 17 Dec 2009 15:52:17 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1DF87E0D18; Thu, 17 Dec 2009 15:51:44 +0000 (UTC) Received: from mail.askja.de (mail.askja.de [83.137.103.136]) by pigeon.gentoo.org (Postfix) with ESMTP id DED51E0D18 for ; Thu, 17 Dec 2009 15:51:43 +0000 (UTC) Received: from static-87-79-89-40.netcologne.de ([87.79.89.40] helo=zone.wonkology.org) by mail.askja.de with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1NLIdj-00016X-3Y for gentoo-user@lists.gentoo.org; Thu, 17 Dec 2009 16:51:43 +0100 Received: from localhost (localhost [127.0.0.1]) (uid 1000) by zone.wonkology.org with local; Thu, 17 Dec 2009 16:51:37 +0100 id 00010499.4B2A5389.00007FD1 From: Alex Schuster To: gentoo-user@lists.gentoo.org Subject: Re: [gentoo-user] {OT} Preparing a laptop for sale Date: Thu, 17 Dec 2009 16:51:35 +0100 User-Agent: KMail/1.12.4 (Linux/2.6.31-tuxonice; KDE/4.3.4; i686; ; ) References: <49bf44f10912161049v3768a3f8m60dddbae4b8777b@mail.gmail.com> In-Reply-To: Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: <200912171651.36053.wonko@wonkology.org> X-Archives-Salt: 0b27d94c-e01b-4368-baf3-50c0a22d82dd X-Archives-Hash: 309efacd912b10245a5a32ea57e069dd Joshua Murphy writes: > A) To fill the drive with zeros: > dd if=/dev/zero of=/dev/ Should be enough for practical purposes. > B) And, to make it at least questionable whether you wiped it or > merely had it encrypted: > dd if=/dev/urandom of=/dev/ Similar method, but faster: badblocks -t random -w /dev/ You can interrupt this after the first pass when the reading & comparing part starts. Wonko