Use vi to add _hp_loadfile_use_nfs=”true” to the file:

#cat /tmp/ifs.cfg

#instl_adm defaults:

#NOTE: Manual additions between the line containing "instl_adm defaults

#and "end instl_adm defaults" will not be preserved. server="10.1.54.230"

netmask[]="255.255.248.0" route_gateway[0]="10.1.48.1" route_destination[0]="default"

#end instl_adm defaults.

_hp_loadfile_use_nfs="true"

Now use instl_adm to update the install file system:

#instl_adm -f /tmp/ifs.cfg

2.Set up NFS exports and check custom configuration files.

Because of preexisting Ignite-UX file system layouts, the locations of certain files are automatically moved when Ignite-UX Version C.7.9 or later is installed. These files are /opt/ ignite/Version, /var/opt/ignite/INDEX, and /var/opt/ignite/config.local. In addition, certain other customer-created config files might need to be moved or edited.

First, edit /etc/exports or /etc/dfs/dfstab as appropriate for the version of HP-UX running on the Ignite-UX server.

For Ignite servers running HP-UX 11i v2 or earlier:

#cat /etc/exports

/opt/ignite/data -ro /var/opt/ignite/config -ro /var/opt/ignite/data -ro /var/opt/ignite/clients -anon=2

#exportfs -a

For Ignite servers running HP-UX 11i v3:

#cat /etc/dfs/dfstab

share -F nfs -o ro /opt/ignite/data share -F nfs -o ro /var/opt/ignite/data share -F nfs -o anon=2 /var/opt/ignite/clients

#shareall

If there are any customer-created config files that are outside of the directories exported by NFS, they must be moved under /var/opt/ignite/data.

3.Edit the /var/opt/ignite/INDEX file to refer to /var/opt/ignite/data.

Some customers will need to modify the config.local entry in /var/opt/ignite/data/ INDEX. For example, the INDEX clause

cfg "HP-UX B.11.31 Default" {

description "Example HP-UX 11i v3 (11.31) configuration." "/opt/ignite/data/Rel_B.11.31/config" "/opt/ignite/data/Rel_B.11.31/hw_patches_cfg" "/var/opt/ignite/data/Rel_B.11.31/core_cfg" "/var/opt/ignite/config.local"

}

would need to be modified to be

cfg "HP-UX B.11.31 Default" {

description "Example HP-UX 11i v3 (11.31) configuration." "/opt/ignite/data/Rel_B.11.31/config" "/opt/ignite/data/Rel_B.11.31/hw_patches_cfg" "/var/opt/ignite/data/Rel_B.11.31/core_cfg" "/var/opt/ignite/data/config.local"

}

Configuring Ignite to replace TFTP with NFS 93