Operating System - HP-UX
1834245 Members
2251 Online
110066 Solutions
New Discussion

Re: HPUX doesn't accept patch installation

 
cbozlagan
Regular Advisor

HPUX doesn't accept patch installation

Im installing Oracle 10g to my HPUX 11.11 system.

Oracle tells me the necessary HPUX patch below:
PHSS_32508
PHSS_32509
PHSS_32510
PHSS_32731
PHCO_31312
I downloaded patchs above, and I converted them into .depot.
Now I'm traying to install , but HPUX doesn't accept them.

Is there anyway to install them. If not, I couldn't install Oracle.

thanks.
24 REPLIES 24
MarkSyder
Honored Contributor

Re: HPUX doesn't accept patch installation

Error message?

Mark Syder (like the drink but spelt different)
The triumph of evil requires only that good men do nothing
Jollyjet
Valued Contributor

Re: HPUX doesn't accept patch installation

You can post what are the steps u had taken to install and what's the error message you recieved.
cbozlagan
Regular Advisor

Re: HPUX doesn't accept patch installation

for example:
I'm traying to install PHSS_32731

System tells me: You must intall PHSS_31073,
PHNE_28810

I'm trying to install PHSS_31073
System tells me: This depends on PHSS_31071,
PHNE_28810

I'm trying to install PHNE_28810
System tells me: PHNE_28810 is superseded by another patch file set that is already installed.

What must I do?

thanks
Peter Godron
Honored Contributor

Re: HPUX doesn't accept patch installation

Hi,
please see earlier threads on Oracle pr-requisite patches:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1056043
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=976161

I assume you are getting the message that the baseproduct is not installed.

Please also read:
http://forums1.itrc.hp.com/service/forums/helptips.do?#33 on how to reward any useful answers given to your questions.
Steven E. Protter
Exalted Contributor

Re: HPUX doesn't accept patch installation

Shalom,

The error message would be helpful.

You need to pay attention to dependencies.

You need when selecting patches need to pay attention to what you have installed.

You may wish to try this:

http://www.hp.com/go/swa

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
cbozlagan
Regular Advisor

Re: HPUX doesn't accept patch installation

Yesterday I installed "GOLDQPK11i_B.11.11.0612.459.depot" for up to date my HPUX system. does it help to acceptance of PH* in to the system if I rollback that Quality Pack?

If rollbaking can be usefull how can I rollbak the GOLDQP....?

Thanks.

James R. Ferguson
Acclaimed Contributor

Re: HPUX doesn't accept patch installation

Hi:

There is *no* need to uninstall anything from the standard patch bundle!

Fisrt, PHSS_32731 has two patch dependencies which you *must* either have in your depot or on your server to install it: PHNE_28810 PHSS_31073. This is one of your problems.

When you create your depot, download ALL dependencies. Anything already on your sever will not be reinstalled again (unless you force it to be, which you don't want to do without good cause!).

The ITRC Patch Database allows the collection of patches and all dependencies in one easy operation so rebuilding your depot is going to save you time.

Be *SURE* to read the patch installation notes for the patches that you are going to install. There are special installation instructions for PHSS_32731 of which you should be aware.

Regards!

...JRF...
Khashru
Valued Contributor

Re: HPUX doesn't accept patch installation

Download patches from itrc inclusding dependencies.
cbozlagan
Regular Advisor

Re: HPUX doesn't accept patch installation

You are right. I must first install dependencies. But system doesn't accept them to.

What must I do?

How can I roll back GOLDQPK11i_B.11.11.0612.459.depot that I installed 2 days before. I think the problem with this.


Thanks
MarkSyder
Honored Contributor

Re: HPUX doesn't accept patch installation

You should have a copy of create_depot_hp-ux_11 on your system. Probably in /var/adm/sw - if not, do a find.

Manually amend this file to include all the patches you want to install then execute the file. It will create a depot for you containing all the patches. You can then install them all in one go.

Mark
The triumph of evil requires only that good men do nothing
cbozlagan
Regular Advisor

Re: HPUX doesn't accept patch installation

Hi Mark,

in / position

find . -name create_depot_hp-ux_11

this command getting no result.

Have you create_depot_hp-ux_11 file?

Thanks
MarkSyder
Honored Contributor

Re: HPUX doesn't accept patch installation

#! /bin/ksh
#
# create_depot
#
# Copy patches into a depot and bundle them.
#
#

function Usage
{
echo "Usage: create_depot [-h] [-i] [-u] [-f]"
echo " [-d ]"
echo " [-b ]"
echo " [-t ]"
echo "where,"
echo " -h = help display"
echo " -i = run in interactive mode"
echo " -u = do not unshar patch files, use existing depots"
echo " -f = write to depot even if it already exists"
}

#
# List of patches

#
PATCH_LIST="
PHSS_32508 \
PHSS_32509 \
"
OS="11.11"

#
# Default values
#
typeset -i INTERACTIVE=0
typeset -i SKIP_DEPOT=0
UNSHAR=y

DEPOT=$PWD/depot
BUNDLE=BUNDLE
TITLE="Patch Bundle"

#
# Temporary values
#
PID=$$
#PSF=depot$PID.psf
PSF=depot.psf

#
# Upon exit...
#
#trap 'rm -f $PSF; exit' 0 1 2 15

while getopts d:b:t:hufi OPTION; do
{
case $OPTION in
d)
DEPOT=$OPTARG
;;
b)
BUNDLE=$OPTARG
;;
t)
TITLE=$OPTARG
;;
h)
Usage
;;
u)
UNSHAR=n
;;
f)
SKIP_DEPOT=1
;;
i)
INTERACTIVE=1
;;
\?)
echo "ERROR: unknown option ($OPTION)"
Usage
;;
esac
}
done

#
# NOTE: Check all the options here and see if there are any problems.
#

if [ $INTERACTIVE -eq 1 ]; then
{
echo "Depot name [$DEPOT]: \c"
read ANSWER

if [ -n "$ANSWER" ]; then
{
DEPOT=$ANSWER
}
fi

echo "Bundle name [$BUNDLE]: \c"
read ANSWER

if [ -n "$ANSWER" ]; then
{
BUNDLE=$ANSWER
}
fi

echo "Bundle title [$TITLE]: \c"
read ANSWER

if [ -n "$ANSWER" ]; then
{
TITLE=$ANSWER
}
fi

echo "Unshar patch files ([$UNSHAR]/n): \c"
read ANSWER

if [ -n "$ANSWER" ]; then
{
UNSHAR=$ANSWER
}
fi
}
fi

echo "DEPOT: $DEPOT"
echo "BUNDLE: $BUNDLE"
echo "TITLE: $TITLE"
echo "UNSHAR: $UNSHAR"

echo "PSF: $PSF"

typeset -i ERRORS=0

#
# Check for existence of depot
#
if [ -d "$DEPOT" ]; then
{
if [ $SKIP_DEPOT -eq 0 ]; then
echo "ERROR: Depot already exists: ${DEPOT}."
echo " Use -f option to override or delete depot."
exit 1
else
echo "NOTE: Using existing depot."
fi
}
fi

#
# Unshar all the patch files.
#
if [ "$UNSHAR" = "y" ]; then
{
echo "Expanding patch shar files..."
for PATCH in $PATCH_LIST; do
{
if [ ! -f $PATCH ]; then
echo "ERROR: Shar file not found for patch $PATCH."
ERRORS=1
else
rm -f ${PATCH}.text ${PATCH}.depot
/bin/sh ${PATCH}

if [ $? -ne 0 ]; then
{
echo "ERROR: Could not unshar ${PATCH}"
ERRORS=1
}
fi
fi
}
done
}
fi

> $PSF

if [ $ERRORS -eq 1 ]; then
echo "Errors were found. Depot was not created."
fi

ERRORS=0

echo "#" >> $PSF
echo "# Temporary product specification file" >> $PSF
echo "#" >> $PSF
echo "# Bundle: $BUNDLE" >> $PSF
echo "# Title: $TITLE" >> $PSF
echo "# Created: `date`" >> $PSF
echo "#" >> $PSF

echo "vendor" >> $PSF
echo " tag HP" >> $PSF
echo " title Hewlett-Packard Company" >> $PSF
echo " description Software Patches from Hewlett-Packard" >> $PSF
echo "end" >> $PSF

echo "bundle" >> $PSF
echo " tag $BUNDLE" >> $PSF
echo " title $TITLE" >> $PSF
echo " description Custom Patch Bundle" >> $PSF
echo " vendor_tag HP" >> $PSF
echo " revision B.11.00" >> $PSF
echo " architecture HP-UX_B.11.00_32/64" >> $PSF
echo " machine_type *" >> $PSF
echo " os_name HP-UX" >> $PSF
echo " os_release B.11.00" >> $PSF
echo " os_version *" >> $PSF
echo " is_reference TRUE" >> $PSF
echo " copyright (c)Copyright 1983-2000 Hewlett-Packard Co., All Rights Reserved" >> $PSF

for PATCH in $PATCH_LIST; do
{
SPEC=`swlist -l product -a software_spec -s $PWD/${PATCH}.depot \
| grep -v "^#" | awk '{print }' -`
SPEC=${SPEC#*,}
echo " contents $PATCH,$SPEC" >> $PSF
}
done

echo "end" >> $PSF

for PATCH in $PATCH_LIST; do
{
echo "Copying $PATCH into depot $DEPOT"

swcopy -x enforce_dependencies=FALSE \
-x mount_all_filesystems=FALSE \
-x reinstall=TRUE \
-x layout_version=1.0 \
-d -s $PWD/$PATCH.depot \* @ $DEPOT

if [ $? -ne 0 ]; then
{
echo "ERROR: Could not swcopy $PATCH into depot."
ERROR=1
}
fi
}
done

echo "Bundling patches in depot"

swpackage -s $PSF @ $DEPOT

if [ $? -ne 0 ]; then
{
echo "ERROR: Could not swpackage ${PSF} into depot."
ERROR=1
}
fi

echo "Verifying the depot."

swverify -d \* @ $DEPOT

if [ $? -ne 0 ]; then
{
echo "ERROR: swverify of depot failed."
ERROR=1
}
fi

if [ $ERRORS -eq 1 ]; then
echo "ERROR: Errors were found while building depot."
fi

I've just put two of your patches in there as an illustration. If you can't copy and paste from the forum, it's probably worth looking at www.hp.com to see if you can download it.

Mark
The triumph of evil requires only that good men do nothing
cbozlagan
Regular Advisor

Re: HPUX doesn't accept patch installation

HiMark,

must I convert PHxx_nnnn into
PHxx_nnnn.depot before running create_depot_hp-ux_11?

Thanks.
MarkSyder
Honored Contributor

Re: HPUX doesn't accept patch installation

No - use the program exactly as it is written (with the names of your patches added to it).

Mark
The triumph of evil requires only that good men do nothing
cbozlagan
Regular Advisor

Re: HPUX doesn't accept patch installation

Hi Mark,

I executed the program.And I check the installed software section in "sam" but I did not see patchs that I included in create_depot_hp-ux_11.

Thanks.
MarkSyder
Honored Contributor

Re: HPUX doesn't accept patch installation

Executing the program creates a file called depot. You have to install this file. I always find the GUI version of swinstall best. It lists the patches for you. If you highlight one and "mark for install" it will automatically mark the dependencies for you.

Mark
The triumph of evil requires only that good men do nothing
cbozlagan
Regular Advisor

Re: HPUX doesn't accept patch installation

Mark,

Could you send me the GUI for install.

thanks.
MarkSyder
Honored Contributor

Re: HPUX doesn't accept patch installation

If you are at the console just type swinstall and it will go to the GUI. If you are at a PC you will need to export the display. Create the following as an executable script:

DISPLAY=nn.nn.nn.nn:0.0
export DISPLAY
swinstall

where nn.nn.nn.nn is the IP address of your PC.

Mark
The triumph of evil requires only that good men do nothing
cbozlagan
Regular Advisor

Re: HPUX doesn't accept patch installation

After running create_depot_hp-ux_11, I saw that.It created PHxx_nnnn folders that include INETSVCS-RUN/usr/sbin, lbin.

All patchs I inserted into create_depot_hp-ux_11 has folder and ../sbin, lbin folders inside it.

I think they were installed. But why I did not see in "installed software section" of man command?

thanks
MarkSyder
Honored Contributor

Re: HPUX doesn't accept patch installation

Have you installed the file called depot? The patches won't show up till you do that.

Mark
The triumph of evil requires only that good men do nothing
cbozlagan
Regular Advisor

Re: HPUX doesn't accept patch installation

do you mean extension with depot.

If you mean extension, system does not accept installation.This was the major problem that I had to solve.

If not I have only depot.psf file called depot.

thanks.
cbozlagan
Regular Advisor

Re: HPUX doesn't accept patch installation

When I start the installation of depot folder.

System tells me notes like below


======= 04/03/07 13:43:45 EETDST BEGIN install AGENT SESSION
(pid=5339)

* Agent session started for user "root@brckxits". (pid=5339)

* Beginning Analysis Phase.
* Source: brckxits:/var/spool/sw/depot
* Target: brckxits:/
* Target logfile: brckxits:/var/adm/sw/swagent.log
* Reading source for product information.
NOTE: The filesystems in the filesystem table will not be checked
against those currently mounted because the
"mount_all_filesystems" option is set to "false".
* Reading source for file information.
NOTE: The patch fileset "PHNE_28810.INET-ENG-A-MAN,r=1.0" is
superseded by another patch fileset that is already installed
on the target. Fileset "PHNE_28810.INET-ENG-A-MAN,r=1.0" will
be excluded.
NOTE: The patch fileset "PHNE_28810.INETSVCS-RUN,r=1.0" is
superseded by another patch fileset that is already installed
on the target. Fileset "PHNE_28810.INETSVCS-RUN,r=1.0" will
be excluded.
NOTE: The patch fileset "PHSS_32508.ACXX,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"ACXX.ACXX,fr=C.03.60,v=HP". Since there is no fileset on the
target or selected from the source which matches this
specification, fileset "PHSS_32508.ACXX,r=1.0" will be
excluded.
NOTE: The patch fileset "PHSS_32509.C,r=1.0" may only be installed
upon a previously installed base fileset. The specification
for this base fileset is "C-ANSI-C.C,fr=B.11.11.12,v=HP".
Since there is no fileset on the target or selected from the
source which matches this specification, fileset
"PHSS_32509.C,r=1.0" will be excluded.
NOTE: The patch fileset "PHSS_32510.LANG-AUX,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"Auxiliary-Opt.LANG-AUX,fr=B.11.11.12,v=HP". Since there is
no fileset on the target or selected from the source which
matches this specification, fileset
"PHSS_32510.LANG-AUX,r=1.0" will be excluded.
NOTE: The patch fileset "PHSS_32731.ATS-RUN,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"ATS-CORE.ATS-RUN,fr=A.11.16.00,v=HP". Since there is no
fileset on the target or selected from the source which
matches this specification, fileset "PHSS_32731.ATS-RUN,r=1.0"
will be excluded.
NOTE: The patch fileset "PHSS_32731.CM-CORE,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"Cluster-Monitor.CM-CORE,fr=A.11.16.00,v=HP". Since there is
no fileset on the target or selected from the source which
matches this specification, fileset "PHSS_32731.CM-CORE,r=1.0"
will be excluded.
NOTE: The patch fileset "PHSS_32731.CM-CORE-MAN,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"Cluster-Monitor.CM-CORE-MAN,fr=A.11.16.00,v=HP". Since there
is no fileset on the target or selected from the source which
matches this specification, fileset
"PHSS_32731.CM-CORE-MAN,r=1.0" will be excluded.
NOTE: The patch fileset "PHSS_32731.CM-PKG,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"Package-Manager.CM-PKG,fr=A.11.16.00,v=HP". Since there is
no fileset on the target or selected from the source which
matches this specification, fileset "PHSS_32731.CM-PKG,r=1.0"
will be excluded.
NOTE: The patch fileset "PHSS_32731.CM-PKG-MAN,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"Package-Manager.CM-PKG-MAN,fr=A.11.16.00,v=HP". Since there
is no fileset on the target or selected from the source which
matches this specification, fileset
"PHSS_32731.CM-PKG-MAN,r=1.0" will be excluded.
NOTE: The patch fileset "PHSS_32732.CM-DEN-PROV,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"Cluster-OM.CM-DEN-PROV,fr=B.03.00.00,v=HP". Since there is
no fileset on the target or selected from the source which
matches this specification, fileset
"PHSS_32732.CM-DEN-PROV,r=1.0" will be excluded.
NOTE: The patch fileset "PHSS_32732.CM-MOF,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"CM-Provider-MOF.CM-MOF,fr=B.03.00.00,v=HP". Since there is
no fileset on the target or selected from the source which
matches this specification, fileset "PHSS_32732.CM-MOF,r=1.0"
will be excluded.
NOTE: The patch fileset "PHSS_32732.CM-OM,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"Cluster-OM.CM-OM,fr=B.03.00.00,v=HP". Since there is no
fileset on the target or selected from the source which
matches this specification, fileset "PHSS_32732.CM-OM,r=1.0"
will be excluded.
NOTE: The patch fileset "PHSS_32732.CM-OM-AUTH,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"Cluster-OM.CM-OM-AUTH,fr=B.03.00.00,v=HP". Since there is no
fileset on the target or selected from the source which
matches this specification, fileset
"PHSS_32732.CM-OM-AUTH,r=1.0" will be excluded.
NOTE: The patch fileset "PHSS_32732.CM-OM-TOOLS,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"Cluster-OM.CM-OM-TOOLS,fr=B.03.00.00,v=HP". Since there is
no fileset on the target or selected from the source which
matches this specification, fileset
"PHSS_32732.CM-OM-TOOLS,r=1.0" will be excluded.
NOTE: The patch fileset "PHSS_32732.CM-PROVIDER,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"CM-Provider-MOF.CM-PROVIDER,fr=B.03.00.00,v=HP". Since there
is no fileset on the target or selected from the source which
matches this specification, fileset
"PHSS_32732.CM-PROVIDER,r=1.0" will be excluded.
NOTE: The patch fileset "PHSS_32732.OPS-PROVIDER,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"OPS-Provider-MOF.OPS-PROVIDER,fr=B.03.00.00,v=HP". Since
there is no fileset on the target or selected from the source
which matches this specification, fileset
"PHSS_32732.OPS-PROVIDER,r=1.0" will be excluded.
* Executing preDSA command.
NOTE: Could not install the bundle "BUNDLE,r=B.11.00" because none
of its filesets could be installed.

* Summary of Analysis Phase:
* 17 of 17 filesets will be Skipped.
* The Analysis Phase succeeded.


* Beginning Analysis Phase.
* Source: brckxits:/var/spool/sw/depot
* Target: brckxits:/
* Target logfile: brckxits:/var/adm/sw/swagent.log
NOTE: The filesystems in the filesystem table will not be checked
against those currently mounted because the
"mount_all_filesystems" option is set to "false".
* Reading source for file information.
NOTE: The patch fileset "PHNE_28810.INET-ENG-A-MAN,r=1.0" is
superseded by another patch fileset that is already installed
on the target. Fileset "PHNE_28810.INET-ENG-A-MAN,r=1.0" will
be excluded.
NOTE: The patch fileset "PHNE_28810.INETSVCS-RUN,r=1.0" is
superseded by another patch fileset that is already installed
on the target. Fileset "PHNE_28810.INETSVCS-RUN,r=1.0" will
be excluded.
NOTE: The patch fileset "PHSS_32508.ACXX,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"ACXX.ACXX,fr=C.03.60,v=HP". Since there is no fileset on the
target or selected from the source which matches this
specification, fileset "PHSS_32508.ACXX,r=1.0" will be
excluded.
NOTE: The patch fileset "PHSS_32509.C,r=1.0" may only be installed
upon a previously installed base fileset. The specification
for this base fileset is "C-ANSI-C.C,fr=B.11.11.12,v=HP".
Since there is no fileset on the target or selected from the
source which matches this specification, fileset
"PHSS_32509.C,r=1.0" will be excluded.
NOTE: The patch fileset "PHSS_32510.LANG-AUX,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"Auxiliary-Opt.LANG-AUX,fr=B.11.11.12,v=HP". Since there is
no fileset on the target or selected from the source which
matches this specification, fileset
"PHSS_32510.LANG-AUX,r=1.0" will be excluded.
NOTE: The patch fileset "PHSS_32731.ATS-RUN,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"ATS-CORE.ATS-RUN,fr=A.11.16.00,v=HP". Since there is no
fileset on the target or selected from the source which
matches this specification, fileset "PHSS_32731.ATS-RUN,r=1.0"
will be excluded.
NOTE: The patch fileset "PHSS_32731.CM-CORE,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"Cluster-Monitor.CM-CORE,fr=A.11.16.00,v=HP". Since there is
no fileset on the target or selected from the source which
matches this specification, fileset "PHSS_32731.CM-CORE,r=1.0"
will be excluded.
NOTE: The patch fileset "PHSS_32731.CM-CORE-MAN,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"Cluster-Monitor.CM-CORE-MAN,fr=A.11.16.00,v=HP". Since there
is no fileset on the target or selected from the source which
matches this specification, fileset
"PHSS_32731.CM-CORE-MAN,r=1.0" will be excluded.
NOTE: The patch fileset "PHSS_32731.CM-PKG,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"Package-Manager.CM-PKG,fr=A.11.16.00,v=HP". Since there is
no fileset on the target or selected from the source which
matches this specification, fileset "PHSS_32731.CM-PKG,r=1.0"
will be excluded.
NOTE: The patch fileset "PHSS_32731.CM-PKG-MAN,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"Package-Manager.CM-PKG-MAN,fr=A.11.16.00,v=HP". Since there
is no fileset on the target or selected from the source which
matches this specification, fileset
"PHSS_32731.CM-PKG-MAN,r=1.0" will be excluded.
NOTE: The patch fileset "PHSS_32732.CM-DEN-PROV,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"Cluster-OM.CM-DEN-PROV,fr=B.03.00.00,v=HP". Since there is
no fileset on the target or selected from the source which
matches this specification, fileset
"PHSS_32732.CM-DEN-PROV,r=1.0" will be excluded.
NOTE: The patch fileset "PHSS_32732.CM-MOF,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"CM-Provider-MOF.CM-MOF,fr=B.03.00.00,v=HP". Since there is
no fileset on the target or selected from the source which
matches this specification, fileset "PHSS_32732.CM-MOF,r=1.0"
will be excluded.
NOTE: The patch fileset "PHSS_32732.CM-OM,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"Cluster-OM.CM-OM,fr=B.03.00.00,v=HP". Since there is no
fileset on the target or selected from the source which
matches this specification, fileset "PHSS_32732.CM-OM,r=1.0"
will be excluded.
NOTE: The patch fileset "PHSS_32732.CM-OM-AUTH,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"Cluster-OM.CM-OM-AUTH,fr=B.03.00.00,v=HP". Since there is no
fileset on the target or selected from the source which
matches this specification, fileset
"PHSS_32732.CM-OM-AUTH,r=1.0" will be excluded.
NOTE: The patch fileset "PHSS_32732.CM-OM-TOOLS,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"Cluster-OM.CM-OM-TOOLS,fr=B.03.00.00,v=HP". Since there is
no fileset on the target or selected from the source which
matches this specification, fileset
"PHSS_32732.CM-OM-TOOLS,r=1.0" will be excluded.
NOTE: The patch fileset "PHSS_32732.CM-PROVIDER,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"CM-Provider-MOF.CM-PROVIDER,fr=B.03.00.00,v=HP". Since there
is no fileset on the target or selected from the source which
matches this specification, fileset
"PHSS_32732.CM-PROVIDER,r=1.0" will be excluded.
NOTE: The patch fileset "PHSS_32732.OPS-PROVIDER,r=1.0" may only be
installed upon a previously installed base fileset. The
specification for this base fileset is
"OPS-Provider-MOF.OPS-PROVIDER,fr=B.03.00.00,v=HP". Since
there is no fileset on the target or selected from the source
which matches this specification, fileset
"PHSS_32732.OPS-PROVIDER,r=1.0" will be excluded.
* Executing preDSA command.
NOTE: Could not install the bundle "BUNDLE,r=B.11.00" because none
of its filesets could be installed.

* Summary of Analysis Phase:
* 17 of 17 filesets will be Skipped.
* The Analysis Phase succeeded.


MarkSyder
Honored Contributor

Re: HPUX doesn't accept patch installation

It's telling you there is still a dependency: CM-Provider-MOF.CM-PROVIDER,fr=B.03.00.00,v=HP

I don't know what this is, so I would suggest a search on www.hp.com

Mark
The triumph of evil requires only that good men do nothing
LinuxNotMS
Advisor

Re: HPUX doesn't accept patch installation

Read the log very carefully... On most of the filesets, it is telling you that you don't have the base product installed so it can't install the patch. That's OK. On the PHNE_28810 patch, it is saying that you already have a patch installed that supercedes the patch.

In both cases you are good to go. After you select the patches, I suggest go to the Actions menu and also perform "Match What Target Has." This will eliminate / skip all of the patches that refer to something you don't have.