1755398 Members
3060 Online
108832 Solutions
New Discussion юеВ

Re: Server Architecture

 
sshp
Advisor

Server Architecture

I believe there is a command that gives cpu architecture information 32 bit/64 bit , PA-RISC etc ..
Anyone know about such commands.
The server I am looking at is a 3440 HP-UX 11.11
7 REPLIES 7
Pete Randall
Outstanding Contributor

Re: Server Architecture

The command is get_conf KERNEL_BITS. That will tell you 32/64. To know whether the machine is RISC or Itanium, use the model command. A RISC machine in your case would return rp3440 and an Itanium box would be rx3440.


Pete

Pete
Kofi ARTHIABAH
Honored Contributor

Re: Server Architecture

I believe the command you are looking for is
getconf
(do a man on it for more details) but for now try

getconf KERNEL_BITS
nothing wrong with me that a few lines of code cannot fix!
Pete Randall
Outstanding Contributor

Re: Server Architecture

I should add that you can also use getconf CPU_CHIP_TYPE to determine RISC/Itanium.


Pete

Pete
Pete Randall
Outstanding Contributor

Re: Server Architecture

Forget CPU_CHIP_TYPE - it's encoded.


Pete

Pete
Asif Sharif
Honored Contributor

Re: Server Architecture

Hi SSHP,

#getconf KERNEL_BITS
#64
#getconf HW_CPU_SUPP_BITS

or you can check it through SAM.

SAM > Performance Monitors > System Propeties > Processor > Kernel bits information

Regards,
Asif Sharif
Regards,
Asif Sharif
sshp
Advisor

Re: Server Architecture

Thanks all for the answers.
sshp
Advisor

Re: Server Architecture

The question was answered.