The NetRexx packages are shipped in two forms, identified by a suffix following the name:
You probably know how to handle these, but a word of caution: the packages contain directory structures, and files with 'long names' (that is, not of 8.3 maximum length names) which are case-sensitive. Many utilities, including some versions of UNZIP and TAR, can lose case information, truncate names, or fail to restore directories.
The most common packages for 'unzipping' these are Info-ZIP and PKZIP: Here are some tips:
unzip NetRexx
which should create the files and directory structure directly. Please see later in this document for complete installation instructions.
pkunzip -d NetRexx
which should create the files and directory structure directly. The '-d' flag indicates that directory structure should be preserved.
You need an up-to-date version of two programs: 'tar' and 'uncompress'; these are available for most operating systems. Here are some tips:
The process of unpacking the file takes two steps:
uncompress NetRexx.tar.Z compress -d NetRexx.tar.Z
(the '-d' means decompress, and may be optional). This should replace the file with one called NetRexx.tar
tar -xvf NetRexx.tar
This should create the files and directories from the package, displaying the name of each as it is unpacked. You may see error messages where directories already exist; these can be ignored.
After unpacking the files, the .tar file can be erased.
[ previous section | contents | next section ]
From 'nrinst.doc', version 1.122.
Copyright(c) IBM Corporation, 1996, 1997. All rights reserved. ©