<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: scrubbing scsi disks using os hpux 11.0 in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491325#M214966</link>
    <description>Would writing a file to the disk device perform the same function as the dd command. For example:&lt;BR /&gt;&lt;BR /&gt;cp /stand/vmunix /dev/dsk/c?t?d? or do I have to use the zero file?</description>
    <pubDate>Thu, 24 Feb 2005 09:27:09 GMT</pubDate>
    <dc:creator>Donald C Nelson</dc:creator>
    <dc:date>2005-02-24T09:27:09Z</dc:date>
    <item>
      <title>scrubbing scsi disks using os hpux 11.0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491320#M214961</link>
      <description>We will be replacing hp9000 k370 servers and need &lt;BR /&gt;to scrub the scsi drives before disposing of the&lt;BR /&gt;servers.  Is there an HP command that does this or a freeware software that I can obtain?  Thank you.</description>
      <pubDate>Tue, 22 Feb 2005 20:29:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491320#M214961</guid>
      <dc:creator>ernest tamura</dc:creator>
      <dc:date>2005-02-22T20:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: scrubbing scsi disks using os hpux 11.0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491321#M214962</link>
      <description>Hi ernest,&lt;BR /&gt;&lt;BR /&gt;The mediainit command is the "built-in" command to do this, but a short dd-constructed scipt to write a series of 1s &amp;amp; 0s - randomally is much better.&lt;BR /&gt;Just search the forum for "disk scrubbing" to get details.&lt;BR /&gt;&lt;BR /&gt;Rgds,&lt;BR /&gt;Jeff</description>
      <pubDate>Tue, 22 Feb 2005 20:35:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491321#M214962</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2005-02-22T20:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: scrubbing scsi disks using os hpux 11.0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491322#M214963</link>
      <description>I always favour nohup'ing dd if=/dev/random of=/disk although it can take ages and might &lt;BR /&gt;not complete if it's your root disks....&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Just a thought!&lt;BR /&gt;&lt;BR /&gt;-=ChaZ=-&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Feb 2005 00:01:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491322#M214963</guid>
      <dc:creator>Charles Harris</dc:creator>
      <dc:date>2005-02-23T00:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: scrubbing scsi disks using os hpux 11.0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491323#M214964</link>
      <description>Hi Ernest,&lt;BR /&gt;&lt;BR /&gt;We had decomissioned K360 Class Servers two months ago. This is what we did to clean the disks.&lt;BR /&gt;&lt;BR /&gt;There should be a zero executable in /dev that will replace the disk data with 0's and 1's.&lt;BR /&gt;&lt;BR /&gt;If you do not have the zero in /dev then create it as follows.&lt;BR /&gt;&lt;BR /&gt;  cd /dev&lt;BR /&gt;     mknod zero c 3 0x000003&lt;BR /&gt;     chown bin:sys zero&lt;BR /&gt;     chmod 666 zero&lt;BR /&gt;&lt;BR /&gt;Then Deactivate volume groups &lt;BR /&gt;&lt;BR /&gt;  vgchange -a n /dev/vgxx&lt;BR /&gt;&lt;BR /&gt;Then do this&lt;BR /&gt;&lt;BR /&gt;   dd if = /dev/zero of= /dev/dsk/c0t0d0 &amp;amp;&lt;BR /&gt;&lt;BR /&gt;do this for all the disks&lt;BR /&gt;&lt;BR /&gt;Indira A</description>
      <pubDate>Wed, 23 Feb 2005 00:29:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491323#M214964</guid>
      <dc:creator>Indira Aramandla</dc:creator>
      <dc:date>2005-02-23T00:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: scrubbing scsi disks using os hpux 11.0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491324#M214965</link>
      <description>If a simple wipe is enough, use a dd from /dev/zero, if not (government or data from human ressources, customer data), things get complicated on hp-ux.&lt;BR /&gt;&lt;BR /&gt;basically the ideal way (recommended by the german security center BSI at least) is a moving pattern like&lt;BR /&gt;11111111&lt;BR /&gt;01111111&lt;BR /&gt;10111111&lt;BR /&gt;11011111&lt;BR /&gt;11101111&lt;BR /&gt;11110111&lt;BR /&gt;11111011&lt;BR /&gt;11111110&lt;BR /&gt;written on to every disk block, which will ensure that even companies like ontrack will bite their teeth on recovering &lt;BR /&gt;the data, but I myself can't translate that into a hp-ux executable.&lt;BR /&gt;&lt;BR /&gt;A compromise would be three runs using both /dev/zero and /dev/urandom.</description>
      <pubDate>Wed, 23 Feb 2005 02:38:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491324#M214965</guid>
      <dc:creator>Florian Heigl (new acc)</dc:creator>
      <dc:date>2005-02-23T02:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: scrubbing scsi disks using os hpux 11.0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491325#M214966</link>
      <description>Would writing a file to the disk device perform the same function as the dd command. For example:&lt;BR /&gt;&lt;BR /&gt;cp /stand/vmunix /dev/dsk/c?t?d? or do I have to use the zero file?</description>
      <pubDate>Thu, 24 Feb 2005 09:27:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491325#M214966</guid>
      <dc:creator>Donald C Nelson</dc:creator>
      <dc:date>2005-02-24T09:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: scrubbing scsi disks using os hpux 11.0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491326#M214967</link>
      <description>The simple cp of /stand/vmunix is not nearly as good because it would only write blocks until the source file is exhausted. The mainder of the disk would then be left unchanged. Reading from /dev/zero or /dev/random supplies an infinite source of input and the dd terminates when the output device indicates a write error (end of file).</description>
      <pubDate>Thu, 24 Feb 2005 10:36:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491326#M214967</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-02-24T10:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: scrubbing scsi disks using os hpux 11.0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491327#M214968</link>
      <description>Florian (congrats btw) - where to get /dev/random?  I don't see it...</description>
      <pubDate>Thu, 24 Feb 2005 10:39:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491327#M214968</guid>
      <dc:creator>TwoProc</dc:creator>
      <dc:date>2005-02-24T10:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: scrubbing scsi disks using os hpux 11.0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491328#M214969</link>
      <description>It's not there by default on 11.00 - my bad :)&lt;BR /&gt;&lt;BR /&gt;You only have to use &lt;BR /&gt; mknod /dev/zero c 3 4&lt;BR /&gt;to create it. &lt;BR /&gt;the site I looked it up again at contained the word 'unsupported', but I think for wiping disks one can live with that.</description>
      <pubDate>Fri, 25 Feb 2005 01:07:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491328#M214969</guid>
      <dc:creator>Florian Heigl (new acc)</dc:creator>
      <dc:date>2005-02-25T01:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: scrubbing scsi disks using os hpux 11.0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491329#M214970</link>
      <description>...and if I had kept on reading I would have read the following years ago:&lt;BR /&gt;&lt;BR /&gt;"Note, filling a file with zeroes is not a secure way to wipe file data from&lt;BR /&gt;disk.  For this, you must use a utility such as 'shred', which is part of&lt;BR /&gt;the GNU fileutils package."&lt;BR /&gt;</description>
      <pubDate>Fri, 25 Feb 2005 01:08:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491329#M214970</guid>
      <dc:creator>Florian Heigl (new acc)</dc:creator>
      <dc:date>2005-02-25T01:08:21Z</dc:date>
    </item>
    <item>
      <title>Re: scrubbing scsi disks using os hpux 11.0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491330#M214971</link>
      <description>Hmmm, You said /dev/random. I'll go home now, it doesn't seem I've got my brain all mixed up.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.josvisser.nl/hpux11-random/" target="_blank"&gt;http://www.josvisser.nl/hpux11-random/&lt;/A&gt;&lt;BR /&gt;if You want to give it try?</description>
      <pubDate>Fri, 25 Feb 2005 04:04:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491330#M214971</guid>
      <dc:creator>Florian Heigl (new acc)</dc:creator>
      <dc:date>2005-02-25T04:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: scrubbing scsi disks using os hpux 11.0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491331#M214972</link>
      <description>The hp-ux FAQ also has a short note about random number generation on hp-ux &amp;lt; 11.11&lt;BR /&gt;&lt;BR /&gt;maybe have a look at it.</description>
      <pubDate>Fri, 25 Feb 2005 04:22:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491331#M214972</guid>
      <dc:creator>Florian Heigl (new acc)</dc:creator>
      <dc:date>2005-02-25T04:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: scrubbing scsi disks using os hpux 11.0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491332#M214973</link>
      <description>some guy together a disk wipe c++ program yesterday&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://213.239.200.41/ximig/thread.php?&amp;amp;tid=23460#b829541" target="_blank"&gt;http://213.239.200.41/ximig/thread.php?&amp;amp;tid=23460#b829541&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;!!!I did not yet have time to try it out!!!</description>
      <pubDate>Thu, 07 Apr 2005 07:40:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491332#M214973</guid>
      <dc:creator>Florian Heigl (new acc)</dc:creator>
      <dc:date>2005-04-07T07:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: scrubbing scsi disks using os hpux 11.0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491333#M214974</link>
      <description>If the servers are being decommissioned and then scrapped, you're best (and most fun) bet is to whip the disks out of the machine, and go at them with a hammer...&lt;BR /&gt;&lt;BR /&gt;Keep on hitting them *HARD* until you can pick up the disk shake it, and it sounds like it's full of tiny pieces of broken glass.&lt;BR /&gt;&lt;BR /&gt;No one's recovering that!&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Apr 2005 13:16:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491333#M214974</guid>
      <dc:creator>Lee Harris_5</dc:creator>
      <dc:date>2005-04-07T13:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: scrubbing scsi disks using os hpux 11.0</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491334#M214975</link>
      <description>Florian, thanks for the url.  Lee, love your ultimate solution.  The seventh floor gravity test sounds good.</description>
      <pubDate>Thu, 07 Apr 2005 17:56:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/scrubbing-scsi-disks-using-os-hpux-11-0/m-p/3491334#M214975</guid>
      <dc:creator>ernest tamura</dc:creator>
      <dc:date>2005-04-07T17:56:06Z</dc:date>
    </item>
  </channel>
</rss>

