<?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: dat tape in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/dat-tape/m-p/4845431#M393992</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/null of=/dev/rmt/0m bs=1024k &lt;BR /&gt;&lt;BR /&gt;Piyush</description>
    <pubDate>Fri, 07 Jun 2002 19:24:30 GMT</pubDate>
    <dc:creator>PIYUSH D. PATEL</dc:creator>
    <dc:date>2002-06-07T19:24:30Z</dc:date>
    <item>
      <title>dat tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dat-tape/m-p/4845428#M393989</link>
      <description>how does one clean out the entire contents of a dat tape?</description>
      <pubDate>Fri, 07 Jun 2002 19:17:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dat-tape/m-p/4845428#M393989</guid>
      <dc:creator>CJENSEN_1</dc:creator>
      <dc:date>2002-06-07T19:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: dat tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dat-tape/m-p/4845429#M393990</link>
      <description>Bryan&lt;BR /&gt;&lt;BR /&gt;You cannot clean or initalize the dat like a disk , jsut write a null file or do a &lt;BR /&gt;&lt;BR /&gt;tar cvf /dev/rm/0m /dev/null&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;or dd if=/dev/null of=/dev/rmt/0m&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Manoj Srivastava</description>
      <pubDate>Fri, 07 Jun 2002 19:20:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dat-tape/m-p/4845429#M393990</guid>
      <dc:creator>MANOJ SRIVASTAVA</dc:creator>
      <dc:date>2002-06-07T19:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: dat tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dat-tape/m-p/4845430#M393991</link>
      <description>Hi Bryan,&lt;BR /&gt;&lt;BR /&gt;Try mt erase or tape erase. &lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Jun 2002 19:23:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dat-tape/m-p/4845430#M393991</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2002-06-07T19:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: dat tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dat-tape/m-p/4845431#M393992</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/null of=/dev/rmt/0m bs=1024k &lt;BR /&gt;&lt;BR /&gt;Piyush</description>
      <pubDate>Fri, 07 Jun 2002 19:24:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dat-tape/m-p/4845431#M393992</guid>
      <dc:creator>PIYUSH D. PATEL</dc:creator>
      <dc:date>2002-06-07T19:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: dat tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dat-tape/m-p/4845432#M393993</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;#mt -f /dev/rmt/0m erase&lt;BR /&gt;&lt;BR /&gt;This may take a long time.&lt;BR /&gt;&lt;BR /&gt;Piyush&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Jun 2002 19:28:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dat-tape/m-p/4845432#M393993</guid>
      <dc:creator>PIYUSH D. PATEL</dc:creator>
      <dc:date>2002-06-07T19:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: dat tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dat-tape/m-p/4845433#M393994</link>
      <description>If you really want to do this:&lt;BR /&gt;&lt;BR /&gt;This command suggested earlier won't work:&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/null of=/dev/rmt/0m bs=1024k &lt;BR /&gt;&lt;BR /&gt;/dev/null will only supply a zero length file&lt;BR /&gt;&lt;BR /&gt;but /dev/zero will supply an endless stream of &lt;BR /&gt;ASCII NUL's.&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/zero of=/dev/rmt/0m bs=1024k &lt;BR /&gt;&lt;BR /&gt;If you don't have a /dev/zero device, you can creat one thusly:&lt;BR /&gt;&lt;BR /&gt;mknod /dev/zero c 3 0x03&lt;BR /&gt;&lt;BR /&gt;Now here's the tricky part; if you select a compression device, how does an infinite stream of 0's compress? If possible, select a non-compression device or better still simply destroy the media.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Jun 2002 19:50:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dat-tape/m-p/4845433#M393994</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2002-06-07T19:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: dat tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dat-tape/m-p/4845434#M393995</link>
      <description>Thanks.</description>
      <pubDate>Mon, 07 Mar 2005 15:08:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dat-tape/m-p/4845434#M393995</guid>
      <dc:creator>CJENSEN_1</dc:creator>
      <dc:date>2005-03-07T15:08:35Z</dc:date>
    </item>
  </channel>
</rss>

