AIX core,cpu and application list


 
Thread Tools Search this Thread
Operating Systems AIX AIX core,cpu and application list
# 1  
Old 01-29-2014
AIX core,cpu and application list

Hi All ,

I am trying to pull out below things from AIX machine (any type)

1. number of physical processor
2. number of logical processsors
3. Total number of processors (physical plus logical)
4. total number of cores
5. list of installed applications with versions and vendor name

below are the commands i am using to extarct these details :

1. number of physical processors :
Code:
 
#print_manifest | grep -w "Processors"

2. number of logical processors :
not able to extract

3.total number of processors (physical plus logical):
not able to extract

4.number of cores :
Code:

Code:
$ lparstat -i | grep "Entitled Capacity"
Entitled Capacity                          : 1.00



5.list of installed application :
lslpp -l

Can someone let me know are the commands which i have used will give the disired output , if not what are the correct commands to do so.

also i am trying to extarct the list of application not the list of filesets installed on aix machine, is there any way by which i can do it (any command ) . i have tried to pull out vendor name of the package but have not found any option present for lslpp

please assist
# 2  
Old 01-29-2014
To answer the below

I am trying to pull out below things from AIX machine (any type)

1. number of physical processor
OK, if you are asking no. of physical processor on the entire manage system, then
lscfg -vp | grep WAY
This will list you all CPU in MS, you might see the any of the below depending on the type of pSeries hardware
Code:
 3-WAY  PROC CUOD:
6-WAY  PROC CUOD:

etc.., if you see then repeat (like 3-WAY 4 times that means you have 12 cores on the system 3x4, same goes with 6-WAY if you output has 6 lines you have 36 core or cpus on the system 6x6)

2. number of logical processsors
Logical CPU are the multiplication of virtual cpu X SMT
Say: you have a system which has one core, and two virtual cpus, and its power7 (with SMT 4) then your Logical CPU will be 2x4= 8, eight)

3. Total number of processors (physical plus logical)
type nmon --> hit 'c', you shall all logical CPU's

4. total number of cores
Total cores/cpus on a particular LPAR? If so your entitled capacity is the no. of cores allocated to that system, and if you have max cpu more than your entitled capacity you can increase it dynamically (to max value) without reactivating the system.

5. list of installed applications with versions and vendor name
If you are using
Code:
installp

command to install a software/application. Those can be seen through lslpp command.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Red Hat

No of CPU's and No of Core

I would like to understand how many number of CPUs and cores do I have on my server based on following out put.. Few observations... Please correct me if I am wrong Since Physical ID is same CPU is singe It has 8 virtual processors Hyper thrading is enabled since no of siblings are... (1 Reply)
Discussion started by: parth_buch
1 Replies

2. Solaris

Share CPU core

Hi, I have 2 physical processor UltraSPARC-T2 with 32 virtual processors I want to execute a perl program on 10 virtual processors. I try prset command, but I don't see a difference. psrset -c "created processor set 2" 1 2 3 4 5 6 7 8 9 10" psrset -b 2 `pgrep program.pl` Maybe... (8 Replies)
Discussion started by: falloutsam
8 Replies

3. AIX

What is a cpu core ?

Hi Friends- What does it mean by 2 cpu cores, 3 cpu cores? Does it mean 2 separate cpus or what is it exactly ? Kindly explain a bit in detail. Thanks panditt (4 Replies)
Discussion started by: deshaipet
4 Replies

4. Programming

Core dump in the application

Hi, I am facing an issue with the core dump, i am not exactly able to figure out why and where i am getting it and how should i resolve it Please find the dbx run on the core reading symbolic information ... Segmentation fault in realloc_y at 0x900000000046980 ($t1) 0x900000000046980... (5 Replies)
Discussion started by: mad_man12
5 Replies

5. Programming

C++ application: how to access AIX process and cpu information?

Hi, may be this is an AIX noob question: my current C++ application runs on Linux and is quite memory consuming. Therefore, the application writes a logfile after it has finished containing memory information, CPU information, information on the running other processes besides my application... (0 Replies)
Discussion started by: DarthVader77
0 Replies

6. UNIX for Advanced & Expert Users

Distinguishing between CPU and Core

Hi, I want to know if in UNIX is it possible to distinguish between a CPU and a core through any command? Thanks, Vineet (1 Reply)
Discussion started by: vineetd
1 Replies

7. UNIX for Advanced & Expert Users

How maney CPU and core?

Hi, Is it a command that show's how many CPU and Core the solaris server have? Tnx (2 Replies)
Discussion started by: mehrdad68
2 Replies

8. AIX

no of core in cpu for aix

is there command which will display no of core per cpu in aix? Regads, Manoj (1 Reply)
Discussion started by: manoj.solaris
1 Replies

9. AIX

cpu and core

Hi, what is concept of core in ibm platform? I want to know how to find out no of core in cpu in aix i.e command how to find out value of core? Wheather any specification is there? (1 Reply)
Discussion started by: manoj.solaris
1 Replies
Login or Register to Ask a Question