- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Testing tapes on VMS
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2005 09:22 AM
06-13-2005 09:22 AM
Testing tapes on VMS
Thanks,
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2005 11:13 AM
06-13-2005 11:13 AM
Re: Testing tapes on VMS
Welcome to the wonderful world of VMS.
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.
$ Show Device M
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.
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:
$ Help Backup
The tape must first be mounted.
$ Mount /Foreign $1$MKA0:
Then you can use backup...
$ Backup /Rewind /Verify /Log files-to-backup $1$MKA0:saveset.bck /SaveSet /Ignore = Label_Processing !to write starting from the beginning of the tape
$ Backup /List $1$MKA0:saveset.bck /SaveSet !to see the contents on the tape.
$ Backup $1$MKA0:saveset.bck /SaveSet [] !to restore from tape to the current location
You could also use the copy command, but you must mount the tape drive as a file oriented device first.
$ Initialize $1$MKA0: Test ! erase the contents of the tape (well, actually just put a new label)
$ Mount $1$MKA0: Test
$ Copy files-to-copy $1$MKA0:[0,0]
$ Directory $1$MKA0:[0,0]
Hope this helps you started. Just ask here again if you have any questions about what you see in help.
Enjoy,
--Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2005 07:55 PM
06-13-2005 07:55 PM
Re: Testing tapes on VMS
welcome to vms!
Jeffery's post can help you.
Warning, because post justify is wrong (not by Jefferey mistake), 1.st example (Backup/rewind ...) is unique command line, no splitted by $1$MKA0:
Here dollar symbol means only shell, you don't type dollar itself.
Tom I hope read you next days.
Antonio Vigliotti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2005 09:05 PM
06-13-2005 09:05 PM
Re: Testing tapes on VMS
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.
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2005 09:26 PM
06-13-2005 09:26 PM
Re: Testing tapes on VMS
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2005 10:32 PM
06-14-2005 10:32 PM
Re: Testing tapes on VMS
with SHOW DEV M
you risk drowning your wished-for info in the many mailboxes.
Avoid that by
PIPE SHOW DEVICE D | SEARCH SYS$PIPE MBA/MATCH=NOR
This way you get ALL tape devices, even if you have some old or third-party drive.
Except for the already-mentioned MK and MT devices, I have once used MS, MU, MF.
I am not sure that this list is complete, but the above PIPE willl find them all.
On the BACKUP command: like indicated above, HELP is your friend.
Any remaining questions? Just come back here.
Proost.
Have one on me.
jpe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2005 10:47 PM
06-14-2005 10:47 PM
Re: Testing tapes on VMS
$ PIPE SHO DEV M...
---------------^
regards Kalle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2005 04:11 AM
06-15-2005 04:11 AM
Re: Testing tapes on VMS
Sincerely,
TJW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2005 04:43 AM
06-15-2005 04:43 AM
Re: Testing tapes on VMS
Jeffery is almost pro. May you assign him some points?
Please read here
http://forums1.itrc.hp.com/service/forums/helptips.do?#33
Thank you for your participation!
Antonio Vigliotti