| 1) His tape was created on a UNIX system. The only way to get the files to the
VAX was to use FTP and get them as binary files. Unfortunately, this left them
with the wrong file attributes (fixed length 512-byte). I had to move them to a
newer OpenVMS system so I could use SET FILE to set the file attributes to
STREAM. I then used CONVERT with an FDL file to convert them to variable length
records. Unfortunately, two files had odd record size, and this process ended
up with files where records lost bytes.
I then changed the FDL file to make the records be twice the desired size (and
hence an even number) and used convert on them. Finally I used DCL to read each
record, then write the first half followed by the second half. A quick pass
through the editor to strip out blank lines at the end, and everything was okay.
2) The system had the AACRT fik installed (DECC RTL). As a result,
CMA$TIS_SHR.EXE needs to be installed /open/head/shar/prot. There is
a .COM file to do this, and I put a reference to it in
SYS$STARTUP:SYSTARTUP_V5.COM.
3) I helped him create and verify his backup tape.
|