- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- How to navigate through tape records in 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-08-2003 06:37 PM
06-08-2003 06:37 PM
How to navigate through tape records in VMS
I Unix, i can navigate tape records using mt like:
mt -f /dev/rmt/0mn fsf 2
will move the tape advance 2 tape records for furhter manipulation like tar, cpio, etc.
How can i do the same in vms ?
Thanks!
Patrick.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2003 01:12 AM
06-09-2003 01:12 AM
Re: How to navigate through tape records in VMS
You can use the SET MAGTAPE command with the /SKIP qualifier. The tape must first be mounted /FOREIGN. To get details of the options available do HELP SET MAGTAPE /SKIP.
Mac
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2003 03:42 AM
06-09-2003 03:42 AM
Re: How to navigate through tape records in VMS
Assuming the name of you tape driver is MKA500:
$ MOUNT/FOREIGN MKA500:
$ SET MAGTAPE/SKIP=FILE:2 MKA500:
Guy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2003 03:58 AM
11-24-2003 03:58 AM
Re: How to navigate through tape records in VMS
BACKUP/LIST tapedrive:
This will run to the end of the current saveset.
Type the command again for every saveset until you get an error saying there are no more savesets on the tape.
Terry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2003 05:08 AM
11-24-2003 05:08 AM
Re: How to navigate through tape records in VMS
I don't known unix so I read HP-UX V11 reference guide to mt; I think Guy post right command list.
Bye
Antoniov
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2003 06:18 PM
11-24-2003 06:18 PM
Re: How to navigate through tape records in VMS
1. on a non-VMS-System, use the set magtape/skip-method
2. on VMS with copy:
Do a
$ mount magtape: label
/in case you don't know the label and have some rights on the system you can use
$ mount /over=id magtape:
as well)
$ DIR magtape:
to get a listing of the files on tape and the copy them to disk using:
$ copy magtape:filename disk:
3. on VMS using backup:
you can either
$mount /for magtape:
$backup /list magtape:
as written before or
$ mount magtape: label
$ dir magtape:
to get a list of the backup files
$ dismou/nounload magtape
$ mount/for magtape
$ backup magtape:filename ...
to read a specific saveset.
Regards
Dieter