Operating System - HP-UX
1759718 Members
3376 Online
108886 Solutions
New Discussion юеВ

Help Related to SD Packages.

 
SOLVED
Go to solution
M Yasir Khan
Occasional Advisor

Help Related to SD Packages.

Dear All,

I am very novice in Unix, so pardon me if i ask very stupid question(s).

1. How can I check if a perticular SD Package is installed on my server? i.e. "InternetSrvcs.INETSRVCS-RUN"

2. if the package is not installed already, where can I download it?

3. how to install a package?

I have 4 SD packages which I have to install as a pre-req to install OVO HTTPS agent.

Please help,

TIA,

Yasir.
novice here...
2 REPLIES 2
Bharat Katkar
Honored Contributor

Re: Help Related to SD Packages.

1. How can I check if a perticular SD Package is installed on my server? i.e. "InternetSrvcs.INETSRVCS-RUN"

You can either look for filesets, product or Bundle as:

# swlist -l product
# swlist -l fileset
# swlist -l bundle

What you have mentioned is fileset so use:
# swlist -l fileset InternetSrvcs.INETSRVCS-RUN

2. if the package is not installed already, where can I download it?

http://itrc.hp.com

3. how to install a package?

# swinstall

This is menu driven utility and user friendly. You can strat using and will get to know more about it. For more details see "man swinstall"

Hope that helps.
Regards,




You need to know a lot to actually know how little you know
Muthukumar_5
Honored Contributor
Solution

Re: Help Related to SD Packages.

1. How can I check if a perticular SD Package is installed on my server? i.e. "InternetSrvcs.INETSRVCS-RUN"

>>

To check this then,

# swlist -l file | grep -i INETSRVCS

will give it.

2. if the package is not installed already, where can I download it?

You can download packages based on platform (uname -a) from,

http://software.hp.com/
http://hpux.connect.org.uk/

3. how to install a package?

Using swinstall utility as,

swinstall -s

see swinstall man page with EXAMPLES part.

hth.
Easy to suggest when don't know about the problem!