Operating System - HP-UX
1833806 Members
3147 Online
110063 Solutions
New Discussion

how would i know if HP-UX 11.0.....

 
SOLVED
Go to solution
John Joaquin
Occasional Contributor

how would i know if HP-UX 11.0.....

Guys,

How would i know if my HP-UX 11.0 is running under 32-bit or 64-bit????


thank's & regards,
joaquin
8 REPLIES 8
Andrew Rutter
Honored Contributor
Solution

Re: how would i know if HP-UX 11.0.....

hi,

two ways really,

1, through sam, system performance

2, #getconf KERNAL_BITS

this will return either 32 or 64

Andy

Andrew Rutter
Honored Contributor

Re: how would i know if HP-UX 11.0.....

hi

sorry 2, should read
#getconf KERNEL_BITS

andy
Robert-Jan Goossens
Honored Contributor

Re: how would i know if HP-UX 11.0.....

# file /stand/vmunix

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

Regards,
Robert-Jan
Mahesh Kumar Malik
Honored Contributor

Re: how would i know if HP-UX 11.0.....

Hi joaquin

Following command will tell you whether hp-ux 11.0 is 32 bit or 64 bit:

#getconf KERNEL_BITS

Regards
Mahesh
Manoj_36
Advisor

Re: how would i know if HP-UX 11.0.....

Hi,
Just give #getconf KERNEL_BITS. It will give you whether HPUX 11.0 is 64 bit or 32. As you give #getconf KERNEL_BITS, it returns a number that is 32 or 64 which tells you about your hpux.

Regards
Cem Tugrul
Esteemed Contributor

Re: how would i know if HP-UX 11.0.....

John,

As an additon to all other true replies;
Go to SAM;
Performance Monitor-->System Propeties

Good Luck,
Our greatest duty in this life is to help others. And please, if you can't
Cem Tugrul
Esteemed Contributor

Re: how would i know if HP-UX 11.0.....

one more option;

#print_manifest|grep -i OS

must return someting like;
OS mode: 64 bit
HPUXBase64 B.11.11 HP-UX 64-bit Base OS
HPUXBaseAux B.11.11.0303 HP-UX Base OS Auxiliary
PHCO_31815 1.0 cumulative sh-posix(1) patch
PHKL_25993 1.0 thread nostop for NFS, rlimit, Ufalloc fix
PHKL_26192 1.0 Cumulative Ioscan/Interrupt Migration update
PHKL_28512 1.0 Fix for POSIX_AIO in JFS3.3
PHKL_29335 1.0 vx_nospace on NFS write.
PHKL_32061 1.0 detach;NOSTOP,Abrt,Psets;slpq1;FSS;getlwp

Good Luck,
Our greatest duty in this life is to help others. And please, if you can't
Sandman!
Honored Contributor

Re: how would i know if HP-UX 11.0.....

Just my two cents...despite the voluminous replies. The simplest would be the getconf command or use swlist to determine the bundle type i.e. 32 or 64 bit. For example:

# getconf KERNEL_BITS

or

# swlist -l bundle | grep -i hpuxeng

cheers!