<?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: Tape duplication in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/tape-duplication/m-p/2539843#M26458</link>
    <description>A tape created with make_recovery contains two tape "files": a 2KB LIF file and a 10KB tar archive. If you have two tape drives on a system, you can easily duplicate the tapes using two dd commands with a no-rewind-on-close device file for the first command. For example:&lt;BR /&gt;dd if=/dev/rmt/0mn of=/dev/rmt/1mn bs=2k dd if=/dev/rmt/0m of=/dev/rmt/1m bs=10k&lt;BR /&gt;&lt;BR /&gt;If you only have one tape drive, and have enough disk space to hold the contents of both tape files, use something like this4:&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/rmt/0mn of=/var/tmp/f1 bs=2k dd if=/dev/rmt/0m of=/var/tmp/f2 bs=10k&lt;BR /&gt;&lt;BR /&gt;(Insert blank tape now) &lt;BR /&gt;&lt;BR /&gt;dd if=/var/tmp/f1 of=/dev/rmt/0mn bs=2k dd if=/var/tmp/f2 of=/dev/rmt/0m bs=10k&lt;BR /&gt;&lt;BR /&gt;Also see the copy_boot_tape (1M) manpage. &lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 13 Jun 2001 08:10:34 GMT</pubDate>
    <dc:creator>Vincenzo Restuccia</dc:creator>
    <dc:date>2001-06-13T08:10:34Z</dc:date>
    <item>
      <title>Tape duplication</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tape-duplication/m-p/2539839#M26454</link>
      <description>I want to make backup copies of my software tapes. They are in 4mm DDS format and one is a bootable tape. I have two 4mm drives connected to my system. What are the commands to do this?</description>
      <pubDate>Tue, 12 Jun 2001 20:54:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tape-duplication/m-p/2539839#M26454</guid>
      <dc:creator>Ken Smith_2</dc:creator>
      <dc:date>2001-06-12T20:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: Tape duplication</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tape-duplication/m-p/2539840#M26455</link>
      <description>&lt;BR /&gt;   We're using this program though no guarantee, just try it yourself. Pls take note that this is tape to tape copy, so it should be on the same capacity. Good luck&lt;BR /&gt;&lt;BR /&gt;? ./tape_copy ?&lt;BR /&gt;This program is supplied and should only be used on the understanding&lt;BR /&gt;that there is NO support or liability on the part of Hewlett-Packard.&lt;BR /&gt;You should therefore NOT rely on the copied tapes being correct.&lt;BR /&gt;You use this at your own risk!&lt;BR /&gt;Usage ./tape_copy input_mag_tape output_mag_tape&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Jun 2001 01:08:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tape-duplication/m-p/2539840#M26455</guid>
      <dc:creator>Marissa Gloria-Ringor</dc:creator>
      <dc:date>2001-06-13T01:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: Tape duplication</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tape-duplication/m-p/2539841#M26456</link>
      <description>Hi Ken:&lt;BR /&gt;&lt;BR /&gt;Try this:&lt;BR /&gt;&lt;BR /&gt;# dd if=/dev/rmt/0m of=/dev/rmt/1m&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Wed, 13 Jun 2001 04:04:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tape-duplication/m-p/2539841#M26456</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2001-06-13T04:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: Tape duplication</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tape-duplication/m-p/2539842#M26457</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;for your bootable tape (i guess you have used Ignite/UX make_tape_recovery) you can use the command&lt;BR /&gt;&lt;BR /&gt;/opt/ignite/bin/copy_boot_tape&lt;BR /&gt;&lt;BR /&gt;(see man 'copy_boot_tape')&lt;BR /&gt;to duplicate the tape.&lt;BR /&gt;&lt;BR /&gt;For other tapes you could use the dd command ie:&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/rmt/0m of=/dev/rmt/1m bs=10k&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Wed, 13 Jun 2001 05:49:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tape-duplication/m-p/2539842#M26457</guid>
      <dc:creator>Andreas Voss</dc:creator>
      <dc:date>2001-06-13T05:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: Tape duplication</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tape-duplication/m-p/2539843#M26458</link>
      <description>A tape created with make_recovery contains two tape "files": a 2KB LIF file and a 10KB tar archive. If you have two tape drives on a system, you can easily duplicate the tapes using two dd commands with a no-rewind-on-close device file for the first command. For example:&lt;BR /&gt;dd if=/dev/rmt/0mn of=/dev/rmt/1mn bs=2k dd if=/dev/rmt/0m of=/dev/rmt/1m bs=10k&lt;BR /&gt;&lt;BR /&gt;If you only have one tape drive, and have enough disk space to hold the contents of both tape files, use something like this4:&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/rmt/0mn of=/var/tmp/f1 bs=2k dd if=/dev/rmt/0m of=/var/tmp/f2 bs=10k&lt;BR /&gt;&lt;BR /&gt;(Insert blank tape now) &lt;BR /&gt;&lt;BR /&gt;dd if=/var/tmp/f1 of=/dev/rmt/0mn bs=2k dd if=/var/tmp/f2 of=/dev/rmt/0m bs=10k&lt;BR /&gt;&lt;BR /&gt;Also see the copy_boot_tape (1M) manpage. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Jun 2001 08:10:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tape-duplication/m-p/2539843#M26458</guid>
      <dc:creator>Vincenzo Restuccia</dc:creator>
      <dc:date>2001-06-13T08:10:34Z</dc:date>
    </item>
  </channel>
</rss>

