Operating System - HP-UX
1820396 Members
3230 Online
109623 Solutions
New Discussion юеВ

How to recognize OS version?

 
Takeshi Sugai
Advisor

How to recognize OS version?

Hi, All.

How to recognize HP-UX OS version?
For example, some machine is install on HP-UX 11.0 ACE 9911 or older version.

Is the "uname" command useful to show HP-UX OS verison.

And current L-class, V-class is install on HP-UX 11.0 ACE 9911, right?

More newest HP-UX 11.00 version available on L-class machine?
Thanks for any help...
13 REPLIES 13
James R. Ferguson
Acclaimed Contributor

Re: How to recognize OS version?

Hi:

# uname -r

will return the current OS release level.

See man pages for uname.

...JRF...
James R. Ferguson
Acclaimed Contributor

Re: How to recognize OS version?

Hi:

# uname -r

will return the current OS release level.

See man pages for uname.

...JRF...
Philip Chan_1
Respected Contributor

Re: How to recognize OS version?

Yeap, "uname -a" should show you the OS version and few other pieces of information as well. (and "model" would show you the machine model as well)
Philip Chan_1
Respected Contributor

Re: How to recognize OS version?

Yeap, "uname -a" should show you the OS version and few other pieces of information as well. (and "model" would show you the machine model as well)
James R. Ferguson
Acclaimed Contributor

Re: How to recognize OS version?

Hi:

# uname -r

will give the OS version.

See man pages for uname for more information.

...JRF...
Philip Chan_1
Respected Contributor

Re: How to recognize OS version?

Yeap, "uname -a" should show you the OS version and few other pieces of information as well. (and "model" would show you the machine model as well)
Philip Chan_1
Respected Contributor

Re: How to recognize OS version?

Yeap, "uname -a" should show you the OS version and few other pieces of information as well. (and "model" would show you the machine model as well)
Philip Chan_1
Respected Contributor

Re: How to recognize OS version?

Yeap, "uname -a" should show you the OS version and few other pieces of information as well. (and "model" would show you the machine model as well)
James R. Ferguson
Acclaimed Contributor

Re: How to recognize OS version?

Hi:

# uname -r

will give the OS version.

See man pages for uname for more information.

...JRF...
James R. Ferguson
Acclaimed Contributor

Re: How to recognize OS version?

Hi:

# uname -r

will give the OS version.

See man pages for uname for more information.

...JRF...
James R. Ferguson
Acclaimed Contributor

Re: How to recognize OS version?


# uname -r

will give the OS version.

See man pages for uname for more information.

...JRF...
Takeshi Sugai
Advisor

Re: How to recognize OS version?

How about swlist?

I think that we can get more acurate OS information.
James R. Ferguson
Acclaimed Contributor

Re: How to recognize OS version?

Hi:

Yes, I also view swlist as valuable. Once I have used uname to get the basic OS version, I might do:

# swlist|grep -i -e "extension" -e "general release"

This would give me a few lines quickly which would indicate the level (and date) of the standard, general release (old "Extension") someone had loaded.

...JRF...