INSTALL.CMS
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:5k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. -----------------------------------------------------------------------
  2. [Installation notes for VM/CMS port of UNZIP 5.32 and ZIP 2.2]
  3. Additional notes from Ian E. Gorman (4/98):
  4. I have not fully tested ZIP and UNZIP in VM (for example, I have not
  5. tried all the options), so ZIP 2.2 for VM and UNZIP 5.32 for VM
  6. should be regarded as beta versions.  Try them out before you decide
  7. that you can depend on them.
  8. Most of the work for the VM port has been done by others, but I have
  9. made some changes and compiled on a more recent version of VM/CMS.  It
  10. is possible that I have introduced new problems or undone some of the
  11. solutions found by previous authors.
  12. Installation
  13. ============
  14. The executables are stored in CMS "PACK" format instead of being
  15. stored in ZIP archives.  This format takes a little longer to
  16. download, but installation is slightly simpler.
  17. Installing UNZIP
  18. ----------------
  19. The UNZIP executable is supplied as the binary file UNZIP.MOD, in the
  20. CMS "PACK" format.
  21. You must get the UNZIP.MOD file on to your system as a binary file in
  22. fixed recording mode, block size 1024.
  23. If you are using FTP in CMS, you can get the file in the correct
  24. format with the LOCSITE and BINARY commands.  Assuming that the UNZIP
  25. executable is stored on the remote site as unz532vm.mod, you could
  26. issue the following commands
  27.     FTP where.ever.com
  28.     <enter user id and password and other stuff>
  29.     BINARY
  30.     LOCSITE FIX 1024
  31.     GET unz532vm.mod
  32.     QUIT
  33. If you are using a 3270 terminal session to upload from a PC, you can
  34. upload the file in the correct format with the SEND command:
  35.     SEND unz532vm.mod A: unz532vm mod a1 (RECFM F LRECL 1024
  36. If your 3270 emulator does not have the SEND command, but is a GUI
  37. application, it may allow you to upload from the menu bar.  If so,
  38. set your options to binary, VM/CMS, fixed record length, and a length
  39. of 1024 before you upload.
  40. When you get the PACKed file on your CMS minidisk, you convert it to
  41. an executable module by using the COPY command with the UNPACK option:
  42.     COPY unz532vm mod a unzip module a1 (UNPACK OLDDATE REPLACE
  43. You can omit the OLDDATE and REPLACE options if you want to.
  44. Installing ZIP
  45. --------------
  46. The ZIP executable is supplied as the binary file ZIP.MOD, in the CMS
  47. "PACK" format.
  48. You must get the ZIP.MOD file on to your system as a binary file in
  49. fixed recording mode, block size 1024.  Assuming that the file is
  50. stored as zip22vm.mod, you can get the file the same way you got the
  51. UNZIP.MOD file:
  52.     Using FTP:
  53.         FTP where.ever.com
  54.         <enter user id and password and other stuff>
  55.         BINARY
  56.         LOCSITE FIX 1024
  57.         GET zip22vm.mod
  58.         QUIT
  59.     Using 3270 file transfer:
  60.         SEND unz532vm.mod A: unz532vm mod a1 (RECFM F LRECL 1024
  61. When you get the PACKed file on your CMS minidisk, you convert it to
  62. an executable module by using the COPY command with the UNPACK option:
  63.     COPY zip22vm mod a zip module a1 (UNPACK OLDDATE REPLACE
  64. Installing Documentation
  65. ------------------------
  66. Once you have UNZIP running, you can use it to extract documentation
  67. from ZIP archives.
  68. You can transfer the ZIP archives to VMV/CMS as a binary file with any
  69. record length.  A record length of 1 will work fine:
  70.     via FTP:
  71.         FTP where.ever.com
  72.         <enter user id and password and other stuff>
  73.         BINARY
  74.         LOCSITE FIX 1
  75.         GET zip22vm.zip zipdoc.zip
  76.         GET unz532vm.zip unzipdoc.zip
  77.         QUIT
  78.     via 3270 session:
  79.         SEND zip22vm.zip A: unzipdoc zip a1 (RECFM F LRECL 1
  80.         SEND unz532vm.zip A: zipdoc zip a1 (RECFM F LRECL 1
  81. Once you have the ZIP archives, extract the documentation to the minidisk of
  82. your choice by using the -d option:
  83.     unzip -a -d A2 unzipdoc.zip
  84.     unzip -a -d A2 zipdoc.zip
  85. The "-a" option is required because the documents are archived as
  86. ASCII text files, but they must be converted to EBCDIC to read them
  87. in VM/CMS.
  88. Notes
  89. =====
  90. Different EBCDIC Character Sets
  91. -------------------------------
  92. The documentation may look strange on your system, because UNZIP
  93. translates from ASCII to "Open Systems" EBCDIC (IBM-1047).  Unless
  94. you are a software developer, you are probably using a different
  95. kind of EBCDIC (like US EBCDIC, IBM-037).  This causes some character
  96. codes to display as different characters.  For example, the character
  97. codes that display as square brackets in IBM-1047 will display as
  98. e-acute and a-grave in IBM-037.
  99. You can use the IBM ICONV utility to translate documents from one
  100. character set to another:
  101.     ICONV old doc a new doc a1 (FROMCODE IBM-1047 TOCODE IBM-037
  102. IND$FILE protocol
  103. -----------------
  104. This is the method by which files are transferred via 3270 sessions
  105. between PC and mainframe.
  106. If you know how to transfer files via 3270 session between PC and
  107. mainframe, you know as much as you need to know about IND$FILE.
  108. If your mainframe has IND$FILE, and your 3270 emulator does file
  109. transfers, you can use your emulator to transfer files between PC
  110. and mainframe.