Previous Topic: USS Environment SetupNext Topic: Acquire the Product Pax Files


Allocate and Mount a File System

The product installation process requires a USS directory to receive the pax file and to perform the unpack steps. We recommend that you allocate and mount a file system that is dedicated to the product acquisition and create the directory in this file system.

You can use the zSeries File System (zFS) or hierarchical file system (HFS) for product downloads.

This procedure describes how to perform the following tasks:

Follow these steps:

  1. Allocate the file system by customizing one of the following samples to your site requirements:

    The file system is allocated.

    Note: Ensure that the zFS or HFS data set name that you use conforms to your data set naming conventions for USS file systems. If the allocation of the file system data set fails, it is because of environmental settings not allowing for the allocation. On an HFS, try using the ISPF 3.2 Data Set Utility to allocate your HFS data set.

  2. Create a mount point for the file system. This example shows how to create a /CA/CAPAX directory in an existing directory, /u/maint. From the TSO OMVS shell, enter the following commands:
    cd /u/maint/
    mkdir CA
    cd CA
    mkdir CAPAX
    

    Note: This document refers to this structure as yourUSSpaxdirectory.

    The mount point is created.

  3. Mount the file system by customizing one of the following samples to your site requirements:

    The file system is mounted.

  4. (Optional) Set security permissions for the directory. You can use the chmod command to let other users access the Pax ESD directory and its files. For example, to allow write access to the Pax ESD directory for other users in your USS group, from the TSO OMVS shell, enter the following command:
    chmod -R 775 /yourUSSpaxdirectory/
    

    Write access is granted.

    Note: For more information about the chmod command, see the IBM z/OS UNIX System Services User Guide (SA22-7802).