<?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: Testing tapes on VMS in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563338#M6098</link>
    <description>INIT/ERASE Mxxxx writes the whole tape.</description>
    <pubDate>Tue, 14 Jun 2005 04:26:15 GMT</pubDate>
    <dc:creator>Ian Miller.</dc:creator>
    <dc:date>2005-06-14T04:26:15Z</dc:date>
    <item>
      <title>Testing tapes on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563334#M6094</link>
      <description>Hello all. I'm coming to VMS from an HP-UX background. I have a large number of DLT III tapes that I want to test for usability by writing to and then reading from them. In the HP-UX world I would normally use the tar command to perform this operation (for example #tar -cvf /dev/rmt/1m /etc, #tar -tvf /dev/rmt/1m) but I'm uncertain of which commands to use for VMS. I'm running VMS 7.2-1 on a VAX 7000. Any assistance from the VMS geniuses out there would be greatly appreciated.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Tom</description>
      <pubDate>Mon, 13 Jun 2005 16:22:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563334#M6094</guid>
      <dc:creator>Tom Wolf_3</dc:creator>
      <dc:date>2005-06-13T16:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Testing tapes on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563335#M6095</link>
      <description>Tom,&lt;BR /&gt;&lt;BR /&gt;Welcome to the wonderful world of VMS.&lt;BR /&gt;&lt;BR /&gt;I do not recall the device naming conventions for STI (MU: I think) or DISSI (MT ??) tape drives, but I believe they both started with M.  SCSI tape drives start with MK.  The third letter delineates the bus.  The number following indicates the device number.  The colon delineates the device.  There may be a leading dollar sign plus a name or number, if so, this system may be part of a cluster and for completeness, you should include them when specifying the device.&lt;BR /&gt;&lt;BR /&gt;$ Show Device M&lt;BR /&gt;&lt;BR /&gt;will show all of the devices that start with M.  One of them is your tape drive.  Substitute your device name with /dev/rmt/1m.  MB devices are mailboxes; ignore them.  Also note that VMS is case insensitive.&lt;BR /&gt;&lt;BR /&gt;The tar equivalent command in VMS is Backup.  The OpenVMS Help command is the equivalent to man pages.  The forward slash is the equivalent of the dash; both qualify the command.  So, for help on command usage, type:&lt;BR /&gt;&lt;BR /&gt;$ Help Backup&lt;BR /&gt;&lt;BR /&gt;The tape must first be mounted.&lt;BR /&gt;&lt;BR /&gt;$ Mount /Foreign $1$MKA0:&lt;BR /&gt;&lt;BR /&gt;Then you can use backup...&lt;BR /&gt;&lt;BR /&gt;$ Backup /Rewind /Verify /Log files-to-backup $1$MKA0:saveset.bck /SaveSet /Ignore = Label_Processing !to write starting from the beginning of the tape&lt;BR /&gt;$ Backup /List $1$MKA0:saveset.bck /SaveSet !to see the contents on the tape.&lt;BR /&gt;$ Backup $1$MKA0:saveset.bck /SaveSet []  !to restore from tape to the current location&lt;BR /&gt;&lt;BR /&gt;You could also use the copy command, but you must mount the tape drive as a file oriented device first.&lt;BR /&gt;&lt;BR /&gt;$ Initialize $1$MKA0: Test ! erase the contents of the tape (well, actually just put a new label)&lt;BR /&gt;$ Mount $1$MKA0: Test&lt;BR /&gt;$ Copy files-to-copy $1$MKA0:[0,0]&lt;BR /&gt;$ Directory $1$MKA0:[0,0]&lt;BR /&gt;&lt;BR /&gt;Hope this helps you started.  Just ask here again if you have any questions about what you see in help.&lt;BR /&gt;&lt;BR /&gt;Enjoy,&lt;BR /&gt;&lt;BR /&gt;--Jeff</description>
      <pubDate>Mon, 13 Jun 2005 18:13:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563335#M6095</guid>
      <dc:creator>Jeffery D. Urmann</dc:creator>
      <dc:date>2005-06-13T18:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: Testing tapes on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563336#M6096</link>
      <description>Tom,&lt;BR /&gt;welcome to vms!&lt;BR /&gt; &lt;BR /&gt;Jeffery's post can help you.&lt;BR /&gt;Warning, because post justify is wrong (not by Jefferey mistake), 1.st example (Backup/rewind ...) is unique command line, no splitted by $1$MKA0:&lt;BR /&gt;Here dollar symbol means only shell, you don't type dollar itself.&lt;BR /&gt; &lt;BR /&gt;Tom I hope read you next days.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Jun 2005 02:55:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563336#M6096</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-06-14T02:55:52Z</dc:date>
    </item>
    <item>
      <title>Re: Testing tapes on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563337#M6097</link>
      <description>Tom,&lt;BR /&gt;&lt;BR /&gt;DLT tapes have a built in redundancy (comparable with raid set of 5 disks of which 1 is redundant). So, bad tape parts are not always detected by your test, only completely bad tapes. See other discussions within OpenVMS.&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Tue, 14 Jun 2005 04:05:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563337#M6097</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2005-06-14T04:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: Testing tapes on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563338#M6098</link>
      <description>INIT/ERASE Mxxxx writes the whole tape.</description>
      <pubDate>Tue, 14 Jun 2005 04:26:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563338#M6098</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2005-06-14T04:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Testing tapes on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563339#M6099</link>
      <description>Tom,&lt;BR /&gt;&lt;BR /&gt;with SHOW DEV M&lt;BR /&gt;you risk drowning your wished-for info in the many mailboxes.&lt;BR /&gt;Avoid that by&lt;BR /&gt;&lt;BR /&gt;PIPE SHOW DEVICE D | SEARCH SYS$PIPE MBA/MATCH=NOR&lt;BR /&gt;&lt;BR /&gt;This way you get ALL tape devices, even if you have some old or third-party drive.&lt;BR /&gt;Except for the already-mentioned MK and MT devices, I have once used MS, MU, MF.&lt;BR /&gt;I am not sure that this list is complete, but the above PIPE willl find them all.&lt;BR /&gt;&lt;BR /&gt;On the BACKUP command: like indicated above, HELP is your friend.&lt;BR /&gt;Any remaining questions? Just come back here.&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Jun 2005 05:32:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563339#M6099</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2005-06-15T05:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: Testing tapes on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563340#M6100</link>
      <description>Just a small type in the previous entry:&lt;BR /&gt;&lt;BR /&gt;$ PIPE SHO DEV M...&lt;BR /&gt;&lt;BR /&gt;---------------^&lt;BR /&gt;&lt;BR /&gt;regards Kalle</description>
      <pubDate>Wed, 15 Jun 2005 05:47:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563340#M6100</guid>
      <dc:creator>Karl Rohwedder</dc:creator>
      <dc:date>2005-06-15T05:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Testing tapes on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563341#M6101</link>
      <description>Thanks to everyone for all the useful information.&lt;BR /&gt;&lt;BR /&gt;Sincerely,&lt;BR /&gt;TJW</description>
      <pubDate>Wed, 15 Jun 2005 11:11:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563341#M6101</guid>
      <dc:creator>Tom Wolf_3</dc:creator>
      <dc:date>2005-06-15T11:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: Testing tapes on VMS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563342#M6102</link>
      <description>Tom,&lt;BR /&gt;Jeffery is almost pro. May you assign him some points?&lt;BR /&gt;Please read here&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt;&lt;BR /&gt; &lt;BR /&gt;Thank you for your participation!&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Jun 2005 11:43:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/testing-tapes-on-vms/m-p/3563342#M6102</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-06-15T11:43:58Z</dc:date>
    </item>
  </channel>
</rss>

