Operating System - HP-UX
1842300 Members
2989 Online
110188 Solutions
New Discussion

How to find version of Ignite

 
SOLVED
Go to solution
Gerry Gerofsky
Advisor

How to find version of Ignite

How do I find the version of Ignite running on my server?

Is there some way to correlate the client version and server versions? which client can be served by which server?
9 REPLIES 9
Court Campbell
Honored Contributor
Solution

Re: How to find version of Ignite

swlist | grep -i ignite
"The difference between me and you? I will read the man page." and "Respect the hat." and "You could just do a search on ITRC, you don't need to start a thread on a topic that's been answered 100 times already." Oh, and "What. no points???"
James R. Ferguson
Acclaimed Contributor

Re: How to find version of Ignite

Hi Gerry:

# what `whence ignite`

Regards!

...JRF...
Gerry Gerofsky
Advisor

Re: How to find version of Ignite

>swlist | grep -i ignite
Thanks. Sometimes one does not look in the obvious places.

Gerry Gerofsky
Advisor

Re: How to find version of Ignite

On my client I see the following:
bash-3.2# swlist | grep -i ignite
IGNITE C.7.1.93 HP-UX Installation Utilities (Ignite-UX)
Ignite-UX-11-11 C.7.1.93 HP-UX Installation Utilities for Installing 11.11 Systems

Do I need both the versions?

The OS running on the system:
bash-3.2# uname -a
HP-UX r23h01 B.11.11 U 9000/785 2000386692 unlimited-user license
Gerry Gerofsky
Advisor

Re: How to find version of Ignite

># what `whence ignite
I don't have whence on my system. I guess it is not on by default
swlist | grep -i ignite works
Patrick Wallek
Honored Contributor

Re: How to find version of Ignite

They are both the exact same version, and most likely are both part of the standard Ignite/UX package.

What you get depends on what swlist switches you used. Have a look at the following, all done on the same machine:

# swlist |grep -i ignite
B5725AA C.6.9.150 HP-UX Installation Utilities (Ignite-UX)
Ignite-UX-11-00 C.6.9.150 HP-UX Installation Utilities for Installing 11.00 Systems
Ignite-UX-11-11 C.6.9.150 HP-UX Installation Utilities for Installing 11.11 Systems
Ignite-UX-11-23 C.6.9.150 HP-UX Installation Utilities for Installing 11.23 Systems

# swlist -l bundle|grep -i ignite
B5725AA C.6.9.150 HP-UX Installation Utilities (Ignite-UX)
Ignite-UX-11-00 C.6.9.150 HP-UX Installation Utilities for Installing 11.00 Systems
Ignite-UX-11-11 C.6.9.150 HP-UX Installation Utilities for Installing 11.11 Systems
Ignite-UX-11-23 C.6.9.150 HP-UX Installation Utilities for Installing 11.23 Systems

# swlist -l product|grep -i ignite
Ignite-UX C.6.9.150 HP-UX System Installation Services

If you want a really long list of stuff do an 'swlist -l fileset | grep -i ignite'.
Court Campbell
Honored Contributor

Re: How to find version of Ignite

They are different versions. Your OK.
"The difference between me and you? I will read the man page." and "Respect the hat." and "You could just do a search on ITRC, you don't need to start a thread on a topic that's been answered 100 times already." Oh, and "What. no points???"
James R. Ferguson
Acclaimed Contributor

Re: How to find version of Ignite

Hi (again) Gerry:

Your root POSIX shell most certainly has 'what' and 'whence'.

# what `whence ignite`

...or as some prefer:

# what $(whence ignite)

Regards!

...JRF...
Court Campbell
Honored Contributor

Re: How to find version of Ignite

I just saw my reply and I meant to say they are not different versions.
"The difference between me and you? I will read the man page." and "Respect the hat." and "You could just do a search on ITRC, you don't need to start a thread on a topic that's been answered 100 times already." Oh, and "What. no points???"