1747985 Members
5012 Online
108756 Solutions
New Discussion юеВ

Re: hpux 11.00 32 or 64

 
SOLVED
Go to solution
Bruno Misculin Rosamili
Occasional Advisor

hpux 11.00 32 or 64

Hi,
how can I evaluate if an installation of hpux 11.00 on a K380 server is 32 or 64 bit?

Bye
8 REPLIES 8
Bill McNAMARA_1
Honored Contributor
Solution

Re: hpux 11.00 32 or 64

use the command getconf
KERNEL_BITS

man getconf for much more...

Later,
Bill
It works for me (tm)
S.K. Chan
Honored Contributor

Re: hpux 11.00 32 or 64

Run this command ..

# getconf KERNEL_BITS
Sebastian Galeski_1
Trusted Contributor

Re: hpux 11.00 32 or 64

use
print_manifest
PIYUSH D. PATEL
Honored Contributor

Re: hpux 11.00 32 or 64

Hi,

getconf KERNEL_BITS

pIYUSH
Bill McNAMARA_1
Honored Contributor

Re: hpux 11.00 32 or 64

Hey, we're all very quick today ;)

You can also run most system info collect scripts which will tell you the same and more..

ie:
http://www.grc.hp.com/docs/nickel/
or
http://come.to/cfg2html

Later,
Bill
It works for me (tm)
Helen French
Honored Contributor

Re: hpux 11.00 32 or 64

The command would be:

# getconf KERNEL_BITS

If you want a matrix of supported OS on servers:

http://devresource.hp.com/STK/serversupport.html

for wkstations:

http://www.hp.com/workstations/products/unix/operating/support_matrix/update.html
Life is a promise, fulfill it!
Steven Sim Kok Leong
Honored Contributor

Re: hpux 11.00 32 or 64

Hi,

Some other methods:

1) Using swlist:

# /usr/sbin/swlist |grep "HP-UX 64-bit"
HPUXEng64RT B.11.00.01 English HP-UX 64-bit Runtime Environment

2) Using kmtune:

# /usr/sbin/kmtune | grep maxdsiz_64bit
maxdsiz_64bit XXXXXXXXXXXXX

3) Using sam:

Go to system properties. Select the appropriate CPU tab.

Hope this helps. Regards.

Steven Sim Kok Leong
A. Daniel King_1
Super Advisor

Re: hpux 11.00 32 or 64

$file /stand/vmunix
/stand/vmunix: ELF-64 executable object file - PA-RISC 2.0 (LP64)

This is useful for items other than the kernel, too. It is very likely you have a mixed system. For instance:

$file /usr/bin/ld
/usr/bin/ld: PA-RISC1.1 shared executable dynamically linked
Command-Line Junkie