- Community Home
- >
- Servers
- >
- HP 9000
- >
- HP 9000
- >
- How to find the CPU type and CPU speed in PA-RISC...
- Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
How to find the CPU type and CPU speed in PA-RISC servers
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-05-2009 10:09 AM
I am having some HP PA-RISC servers.
Now i want to view CPU type (Inter or AMD) and CPU Speed.
Solved! Go to Solution.
Re: How to find the CPU type and CPU speed in PA-RISC servers
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-05-2009 10:15 AM
You already gave the type: HP PA-RISC. It's HP's architecture, specifically for HP-UX.
CPU speed can be obtained with this little script snippet:
HPUX=/stand/vmunix
MODEL=$(grep -i $(model | tr "/" " " \
| awk '{print $NF}') \
/usr/sam/lib/mo/sched.models \
| awk '{print $NF}')
MHZ=$(echo itick_per_tick/D \
| adb -k $HPUX /dev/kmem \
| tail -1 \
| awk '{print $2/10000}')
echo `hostname` has `ioscan -k |grep -n processor \
|wc -l` $MODEL $MHZ "Mhz processor(s)"
Pete
Pete
Re: How to find the CPU type and CPU speed in PA-RISC servers
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-05-2009 10:38 AM
NU_PROC=`echo "runningprocs/D" | adb -k /stand/vmunix /dev/kmem |awk -F: 'NR>1 {print $2}'`
MODEL=`model|awk -F/ '{print $3}'`
MEM=`echo "phys_mem_pages/D"| adb -k /stand/vmunix /dev/kmem |awk -F: 'NR>1 {print$2}'`
Re: How to find the CPU type and CPU speed in PA-RISC servers
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-05-2009 10:56 AM
# print_manifest
NOTE: you will not see Intel or AMD for PA-RISC. These are proprietary chips designed by HP and have no relationship to PC hardware at all. The PA-RISC systems cannot run Windows or Linux, only HP-UX. If you have newer hardware called Itanium (also know as Integrity or IA64, etc), these are 64 bit CISC (not RISC) and they can run certain versions of Windows, Linux and of course, HP-UX. But unlike a PC, they have virtually no interchangeable parts like USB disks or I/O cards. Even PCI cards must be HP-compatible.
Re: How to find the CPU type and CPU speed in PA-RISC servers
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-05-2009 11:08 AM
IF you know the model of the server, from the server data sheet you can know the type of PA-RISC processor like PA-8400 or PA-8500 or PA-8600 , PA-8700 or PA-8800 or PA-8900 (Latest 2005).
Once the processor details are known freqency also can be found.
To See Model:
# model
Architecture: (PA-Risc or Itanium):
# uname -a
Other cpu details you can find using cstm:
# echo 'selclass qualifier cpu;info;wait;infolog ' | /usr/sbin/cstm
>Now i want to view CPU type (Inter or AMD) and CPU Speed.
Btw: PA-RISC server will have only Hewlett Packard PA-8X00 based processor. ( not AMD or Intel.)
Cheers,
Raj.
Re: How to find the CPU type and CPU speed in PA-RISC servers
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-05-2009 11:35 AM
Re: How to find the CPU type and CPU speed in PA-RISC servers
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-05-2009 12:29 PM
See the PA-8000 series processors: excep PA-8800 and PA-8900 all risc processors are single core till 2004.
__________________________
PA-8000 :Single Core.
PA-8200 :Single Core.
PA-8500 :Single Core.
PA-8600 :Single Core.
PA-8700 :Single Core.
PA-8800 : Dual Core cpu.
PA-8900 : Dual Core cpu.
* PA-8800 and PA-8900, dual core PA-RISC processors. PA-8800 released on 2004.
PA-8900 : It was the last PA-RISC microprocessor to be developed and was introduced on May 2005 ]
What is the model of your server. Are you able to figure out the processor type.
Hth,
Raj.
Re: How to find the CPU type and CPU speed in PA-RISC servers
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-05-2009 12:44 PM
Also check out this links:
For identifying dual core cpu:
This question raised many times with the links below:
http://forums11.itrc.hp.com/service/forums/questio
http://forums11.itrc.hp.com/service/forums/questio
On hp-ux 11.23 you can find a utility called /usr/contrib/bin/machinfo that gives more granularity of CPU info , like "4 logical processors (2 per socket)" i.e dual core. [ 2 per socket]
Hth.
Raj.
Re: How to find the CPU type and CPU speed in PA-RISC servers
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-06-2009 12:53 AM
Actually , Itanium is a family of 64-bit Intel
microprocessors that implement the Intel Itanium architecture (formerly called IA-64).
And ,correct me if I am mistaken but now EPIC (Explicitly Parallel Instruction Computing) processor
architecture is used in Integrity servers.
Re: How to find the CPU type and CPU speed in PA-RISC servers
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-06-2009 01:12 AM
you can try with this commands
echo "selclass qualifier cpu;info;wait;il" | cstm
or
machinfo -v
Suraj
Re: How to find the CPU type and CPU speed in PA-RISC servers
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-06-2009 01:13 AM
no points for this post please
Suraj
Re: How to find the CPU type and CPU speed in PA-RISC servers
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-06-2009 02:00 AM
Bill,
Actually you can run NetBSD/OpenBSD and Linux on PA-RISC.
Re: How to find the CPU type and CPU speed in PA-RISC servers
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-06-2009 06:17 AM
If pair-risc then print_manifest and if itanium use machinfo.
Regards
Sunny
Re: How to find the CPU type and CPU speed in PA-RISC servers
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-06-2009 06:36 AM
That's correct. x86 is CISC but Integrity uses EPIC.
Re: How to find the CPU type and CPU speed in PA-RISC servers
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-11-2009 04:53 AM
This Script will help you very much:
#echo "map;wait;selall;wait;info;wait;infolog;view;done" | cstm >output.txt
Re: How to find the CPU type and CPU speed in PA-RISC servers
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-12-2009 10:24 AM
I am using following PA-RISC HPUX servers, so please help me to find how cores are there in those servers.
9000/800/L2000-44
9000/800/rp3440#1
9000/785/J6000
9000/800/N4000-75
9000/800/rp4440
9000/800/K580
9000/800/rp3440#1
9000/800/rp4440
9000/800/rp3440
9000/785/J6000
9000/785/J6000
9000/785/J6000
Re: How to find the CPU type and CPU speed in PA-RISC servers
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-12-2009 10:56 AM
http://forums.itrc.hp.com/service/forums/questiona
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! star in the left column!
Re: How to find the CPU type and CPU speed in PA-RISC servers
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-12-2009 11:31 AM
make a note this link it is my favorite when it comes to PA-RISC Computers:
http://www.openpa.net/systems/
