- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Write TAR/BACKUP to RAW Disk(VMS), Read on UNIX (H...
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
Discussions
Discussions
Discussions
Forums
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
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
тАО10-17-2003 12:47 AM
тАО10-17-2003 12:47 AM
Write TAR/BACKUP to RAW Disk(VMS), Read on UNIX (HPUX) - Possible?
.
Is this possible?
.
Anyone done this yet?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-17-2003 04:08 AM
тАО10-17-2003 04:08 AM
Re: Write TAR/BACKUP to RAW Disk(VMS), Read on UNIX (HPUX) - Possible?
I don't known system you have described but AFAIK tar and backup are not compatibile.
You could see
http://h71000.www7.hp.com/wizard/wiz_2311.html
http://h71000.www7.hp.com/wizard/wiz_2162.html
and you can find VMS tar reading
http://h71000.www7.hp.com/wizard/wiz_0880.html
Thees are only clues no solution.
Bye
Antoniov
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-17-2003 04:35 AM
тАО10-17-2003 04:35 AM
Re: Write TAR/BACKUP to RAW Disk(VMS), Read on UNIX (HPUX) - Possible?
Check here for availablity:
http://www.goatley.com/hunter/w2k.html
(Yupp, W2k, since it is also available for Windows).
Else you could write a Tape on VMS and read that on the Unix box. Also since you refer to ASCII data, compressing them using Zip might allow you to use your slow network nevertheless.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-17-2003 04:37 AM
тАО10-17-2003 04:37 AM
Re: Write TAR/BACKUP to RAW Disk(VMS), Read on UNIX (HPUX) - Possible?
if you have TCP/IP installed on VMS you also have two ways:
1) using FTP, you should write som script to transfer files;
2) activate NFS if is avaiable on unix; in this case the NFS volume is accessible by unix and vms in the same SAN.
Alternativly there is a software calles samba to exchange data between different OS.
H.T.H.
Antoniov
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-17-2003 05:12 AM
тАО10-17-2003 05:12 AM
Re: Write TAR/BACKUP to RAW Disk(VMS), Read on UNIX (HPUX) - Possible?
How about using an intermediate, non-native-to-either, file structure? Like a PC FAT structure? There are tools on both VMS and Unix for that no?
>There is no such thing as a "raw" device
> under OpenVMS, disks are always formatted > either as ODS-2 or ODS-5 volumes.
Nonsense! Of course there are raw devices!
You can just open "DKA100:". You'd need LOGIO priv, and it is not done much, but hey it can be done!
Check out DUMP/BLO=(STA:x,COU:y) dev:
That using a disk as a raw device!
And you can even use DCL. As prove I submit a little Hack i wrote once when my MFD [0,0] 'accidently' lost it's directory attribute, after which you can only use the disk as raw device!
================================================================================
Note 3098.3 SET FILE/NODIR [000000]000000.dir ! 3 of 4
xxx::VANDENHEUVEL "Things that make you think, Hmmm" 30 lines 6-DEC-1994 11:08
-< Nothing a little DCL could not fix :-) >-
--------------------------------------------------------------------------------
Hmmm,
Fixing a hosed 000000.DIR file header sounds just the thing for PATCH.
Lacking that on Alpha, why not use for a little DCL instead.
Something along the following lines should do:
$mount/for mess:
$open/read/write broken mess:
$x="1234"
$x[0,32]=1
$read/key=&x broken home
$ibmaplbn = f$cvsi(24*8,32,home)
$ibmapsize = f$cvsi(32*8,16,home)
$x[0,32]= ibmaplbn + ibmapsize - 1 + 4 ! MFD = (4,4), VBN = LBN -1
$read/key=&x broken mfd
$filechar= f$cvsi(52*8,32,mfd)
$fid = f$cvsi(8*8,32,mfd)
$write sys$output f$fao("!XL !XL", fid, filechar) ! 0004004 00000080
$mfd[52*8,32]= filechar + 8192 ! FCH$M_DIRECTORY
$check = f$cvsi(510*8,16,mfd)
$mfd[510*8,16]= check + 8192
$write/update/symbol broken mfd
$close broken
$dism/nounl mess
$moun mess presto!
-------------------------------------
Cheers,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-17-2003 07:06 AM
тАО10-17-2003 07:06 AM
Re: Write TAR/BACKUP to RAW Disk(VMS), Read on UNIX (HPUX) - Possible?
very impressive hack, but have you actually ever tried to put (and read) data on such a "raw" device in a tar archive or backup saveset? ;-)
Greetings, Martin