1833756 Members
2590 Online
110063 Solutions
New Discussion

Re: Installing patch

 
Paul Carey_1
New Member

Installing patch

Trying to install a patch with multiple dependent patches. Tried to run create_depot as per the patch instructions to no avail. When I run: find / -name create* I do not find a create_depot
Any help is very much appreciated. I do not have a GUI component on my HP-UX box.
3 REPLIES 3
Geoff Wild
Honored Contributor

Re: Installing patch

swcopy -s \* @

Rgds...Geoff
Proverbs 3:5,6 Trust in the Lord with all your heart and lean not on your own understanding; in all your ways acknowledge him, and he will make all your paths straight.
Michael Tully
Honored Contributor

Re: Installing patch

If you have all of the patches in the one directory e.g.

# mkdir /tmp/patch
# for i in PH*.depot
> do
> echo $i
> swcopy -s ${PWD}/$i \* @ /tmp/patch
> done
Then run swinstall, and use the /tmp/patch as your depot.
Anyone for a Mutiny ?
havard
Occasional Advisor

Re: Installing patch

try the instruction:
find / -name "create*" -print

With "", find works correctly

regards,