Operating System - HP-UX
1833777 Members
2154 Online
110063 Solutions
New Discussion

Is it possible to install two depot files at the same time ?

 
SOLVED
Go to solution
Frank de Vries
Respected Contributor

Is it possible to install two depot files at the same time ?

Hi,
I guess it is possible, but before I experiment
I thought I pick some brains first.

I have 2 depot file taht have a socalled circular reference (according to hp anyway)

gettext-0.14.5-hppa-11.11.depot
libiconv-1.10-hppa-11.11.depot

Can I install them in one command
swinstall -s depot1 depot2
or
do I do it some other way:

Thx
Look before you leap
4 REPLIES 4
Pete Randall
Outstanding Contributor

Re: Is it possible to install two depot files at the same time ?

Sure - use swcopy to place them both in /var/spool/sw (or wherever your depot is located), then invoke swinstall interactively and select both for installation.


Pete

Pete
James R. Ferguson
Acclaimed Contributor
Solution

Re: Is it possible to install two depot files at the same time ?

Hi Frank:

Add one depot to the other or copy both to a third:

# swcopy -v -s /tmp/depot -x enforce_dependencies=false \* @ /var/tmp/swdepot

Then 'swinstall' using the merged depot.

Regards!

...JRF...

Luk Vandenbussche
Honored Contributor

Re: Is it possible to install two depot files at the same time ?

Hi Frank

swcopy -s /dir/gettext-0.14.5-hppa-11.11.depot @ /dir2
swcopy -s s /dir/libiconv-1.10-hppa-11.11.depot @ /dir2

swinstall -s /dir2
Frank de Vries
Respected Contributor

Re: Is it possible to install two depot files at the same time ?

Magic !!
Look before you leap