<?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: dd command in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/dd-command/m-p/3272442#M178902</link>
    <description>Hi Rambo,&lt;BR /&gt;&lt;BR /&gt;I would use painless... :)&lt;BR /&gt;&lt;BR /&gt;If you want to zero the disk, i would use /dev/zero ( # mknod /dev/zero c 3 4&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;With expensive tools you will be able to optain the data again. If you do this multiple times (7) you need real expensive tools to gain access to the data. A Hammer ( or painless) is the only way to be sure.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Gideon&lt;BR /&gt;</description>
    <pubDate>Mon, 10 May 2004 15:13:27 GMT</pubDate>
    <dc:creator>G. Vrijhoeven</dc:creator>
    <dc:date>2004-05-10T15:13:27Z</dc:date>
    <item>
      <title>dd command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dd-command/m-p/3272437#M178897</link>
      <description>Hi all&lt;BR /&gt;   If I use "dd" like this :&lt;BR /&gt; #dd if=/dev/null of=/dev/rdsk/c20d0 bs=2048 &lt;BR /&gt; &lt;BR /&gt;Are all of the data on /dev/rdsk/c2t0do be deleted ? &lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Mon, 10 May 2004 14:48:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dd-command/m-p/3272437#M178897</guid>
      <dc:creator>Rambo_1</dc:creator>
      <dc:date>2004-05-10T14:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: dd command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dd-command/m-p/3272438#M178898</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you are looking for a faster methode look at mediainit command.&lt;BR /&gt;&lt;BR /&gt;# mediainit -v /dev/rdsk/c?t?d?&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Robert-Jan&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 10 May 2004 15:03:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dd-command/m-p/3272438#M178898</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2004-05-10T15:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: dd command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dd-command/m-p/3272439#M178899</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Since the "of" is /dev/rdsk/c2t0d0 all data on this disk will be lost. This is a destructive command.&lt;BR /&gt;&lt;BR /&gt;man dd for more help.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;regds&lt;BR /&gt;</description>
      <pubDate>Mon, 10 May 2004 15:03:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dd-command/m-p/3272439#M178899</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2004-05-10T15:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: dd command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dd-command/m-p/3272440#M178900</link>
      <description>The problem with usuing /dev/null for the input device is that it is a null device (ie no data will actually be read). If you want to actually fill the disk with zeros then you should use the /dev/zero device instead. You also want a larger bs so that this operation gets done in a timely fashion:&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/zero bs=256k of=/dev/rdsk/c2t0d0&lt;BR /&gt;</description>
      <pubDate>Mon, 10 May 2004 15:08:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dd-command/m-p/3272440#M178900</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-05-10T15:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: dd command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dd-command/m-p/3272441#M178901</link>
      <description>The problem with using /dev/null for the input device is that it is a null device (ie no data will actually be read). If you want to actually fill the disk with zeros then you should use the /dev/zero device instead. You also want a larger bs so that this operation gets done in a timely fashion:&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/zero bs=256k of=/dev/rdsk/c2t0d0&lt;BR /&gt;</description>
      <pubDate>Mon, 10 May 2004 15:08:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dd-command/m-p/3272441#M178901</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-05-10T15:08:12Z</dc:date>
    </item>
    <item>
      <title>Re: dd command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dd-command/m-p/3272442#M178902</link>
      <description>Hi Rambo,&lt;BR /&gt;&lt;BR /&gt;I would use painless... :)&lt;BR /&gt;&lt;BR /&gt;If you want to zero the disk, i would use /dev/zero ( # mknod /dev/zero c 3 4&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;With expensive tools you will be able to optain the data again. If you do this multiple times (7) you need real expensive tools to gain access to the data. A Hammer ( or painless) is the only way to be sure.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Gideon&lt;BR /&gt;</description>
      <pubDate>Mon, 10 May 2004 15:13:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dd-command/m-p/3272442#M178902</guid>
      <dc:creator>G. Vrijhoeven</dc:creator>
      <dc:date>2004-05-10T15:13:27Z</dc:date>
    </item>
  </channel>
</rss>

