1833894 Members
1762 Online
110063 Solutions
New Discussion

Re: Version

 
SOLVED
Go to solution
SupraTeam_1
Regular Advisor

Version

Hello All,
How can i find teh complet version of hp-ux because uname -r it's too short

Yhanks
7 REPLIES 7
Piergiacomo Perini
Trusted Contributor

Re: Version

Hi,

you can try with

uname -a

or

swlist | grep HP-UX

in order to obtain more info on package software HP-UX.

regards
Kent Ostby
Honored Contributor

Re: Version

uname -r is generally what you would look at.

If you are on 11.23, I think you can do:

swlist -l bundle | grep 11.23 and it will show you.
"Well, actually, she is a rocket scientist" -- Steve Martin in "Roxanne"
Patrick Wallek
Honored Contributor

Re: Version

What do you mean it's too short? That is the version number. The possible versions include:

10.20
11.00
11.11
11.23

and others.

What type of version number are you looking for?
Rainer von Bongartz
Honored Contributor
Solution

Re: Version

do a

swlist | grep HPUX

and you will get something like

HPUX11i-OE B.11.11.0406 HP-UX 11i Operating Environment Component

Regards
Rainer
He's a real UNIX Man, sitting in his UNIX LAN making all his UNIX plans for nobody ...
Geoff Wild
Honored Contributor

Re: Version

what /stand/vmunix |more

Will give you a lot of info...

swlist -l bundle |grep OE

Will tell you the Operating Environment

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.
James R. Ferguson
Acclaimed Contributor

Re: Version

Hi:

Using 'uname -r' does give the basic version of HP-UX, e.g 11.11.

Beyond the core version, you can speak about the standard patch bundles that have been applied. Good administration generally means that you apply the Support Plus or Quality Pack bundles available on the ITRC Patch Database or orderable via SUM every 6-months.

To determine what are the latest bundles installed, do:

# swlist

Regards!

...JRF...
SupraTeam_1
Regular Advisor

Re: Version

Thanks