Operating System - Tru64 Unix
1752781 Members
6517 Online
108789 Solutions
New Discussion юеВ

Re: about the os version

 
SOLVED
Go to solution
leyearn
Regular Advisor

about the os version

on my system i executed the command
the following messages appeared :
# uname -a
OSF1 yx4002 V4.0 878 alpha

but someone told me that there was many different releases
such as 4.0B 4.0D 4.0F

but how can i now my os is 4.0B or others?
4 REPLIES 4
Hein van den Heuvel
Honored Contributor
Solution

Re: about the os version


Build # 878 is release V4.0D.

To determine the correct information for any version of Tru64 UNIX:
# strings /vmunix | grep '(Rev.' | cut -f1 -d';'
Or use (For DU v4.0 or higher):

# sizer -v | cut -f1 -d';'


Attached an overview through 2001.

hth,
Hein.
Ralf Puchner
Honored Contributor

Re: about the os version

why not using "uname -a" and check the version number (in your case 878) with the table (have a look to Hein posting which seems to be from an HP internal use only page - but is also official available)

Another quick solution is to check the /var/adm/messages file containing the version ("Digital Unix 4.0D (Rev. 878)").



Help() { FirstReadManual(urgently); Go_to_it;; }
Joris Denayer
Respected Contributor

Re: about the os version

Somewhere in v4.0X stream, the sizer command got the option "-v"

f.i.
# sizer -v
Digital UNIX V4.0G (Rev. 1530); Thu Oct 31 15:57:29 MET 2002

If this option is not yet available, the strings on the kernel is the most easy one, because you don't need a table to convert the build number in a version-number

Joris
To err is human, but to really faul things up requires a computer
Joris Denayer
Respected Contributor

Re: about the os version

Woeps,

Sorry Hein, now I read that you already gave this solution.

Joris
To err is human, but to really faul things up requires a computer