CPU Utilization


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting CPU Utilization
# 1  
Old 08-09-2010
CPU Utilization

I know how to check the CPU utilization and memory space
like:
Code:
vmstat
top
free

What i want ot check on my linux system is...
how much CPU are available on my system and do i need to put extra CPU.
Also need to check the hardware configuration and the space related to the same

thanks
# 2  
Old 08-09-2010
Quote:
how much CPU are available on my system and do i need to put extra CPU.
vmstat should show you. Check for the run-Queue and the CPU columns us,sy,id,wa. Monitor over a longer time and check peak times where idle goes to (or close to) zero and where your run-queue of the kthreads is very high (approx. larger than your number of CPUs *2).

Quote:
Also need to check the hardware configuration and the space related to the same
What do you mean with "check the hardware configuration"? Do you want to use something like hwinfo? What do you mean with "space"? Disk space? memory? Disk space is usually primarily related to your application(s) running on the box, not to the hardware configuration.
# 3  
Old 08-09-2010
ok may be i didnt explained properly..
Any command to check how many RAM are connected and whats it size..
And how many CPU are in my system and is it loaded so that i can put one more or rather 2 in the box for better performances...

---------- Post updated at 06:01 PM ---------- Previous update was at 05:58 PM ----------

Also when i used vmstat it shows
Code:
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu------
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 0  0  73840  20340 173540 5733740    0    0    19    12    0    0  0  0 100  0  0

Is it fine from the output or do i have to see more stuff and checks...
# 4  
Old 08-09-2010
Quote:
Any command to check how many RAM are connected and whats it size..
Code:
head -1  /proc/meminfo
MemTotal:      1002488 kB
# or
free

Quote:
And how many CPU are in my system and is it loaded so that i can put one more or rather 2 in the box for better performances...
Number of CPUs etc. is located in /proc/cpuinfo for example:
Code:
grep -c processor.*: /proc/cpuinfo
1

The 1st line of vmstat is usually the average since last boot. So you'll have to issue for example a
Code:
vmstat 1 20

But as said - you have to do this over a longer time to get an impression.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

CPU Utilization and Memory Utilization of Services and Applications

Hi, i am new to linux/RHEL 6.0 and i have two questions. 1) How to get the CPU utilization and Memory Utilization of all Services running currently? 2) How to get the CPU utilization and Memory Utilization of all Applications running currently? Please help me to find the script. ... (2 Replies)
Discussion started by: nossam
2 Replies

2. UNIX for Advanced & Expert Users

CPU utilization

Hi, any commande on AIX 6.1 that shows me total CPU utilization ? I saw curt in documentation but there should be a trace file before. Thank you. (1 Reply)
Discussion started by: big123456
1 Replies

3. AIX

CPU Utilization

Hi All, Can some one help me in finding % CPU Utilization ? From VMSTAT command, How we can find % utilization ? Thanks (3 Replies)
Discussion started by: VBudatha
3 Replies

4. UNIX for Dummies Questions & Answers

how to get persistant cpu utilization values per process per cpu in linux (! top,ps)

hi, i want to know cpu utilizatiion per process per cpu..for single processor also if multicore in linux ..to use these values in shell script to kill processes exceeding cpu utilization.ps (pcpu) command does not give exact values..top does not give persistant values..psstat,vmstat..does njot... (3 Replies)
Discussion started by: pankajd
3 Replies

5. Shell Programming and Scripting

CPU Utilization

Hi to All, Would you please help me. I would like to know, In Unix How to know CPU utilization for every process. Thanks in Advance. Thanks, Divyang (3 Replies)
Discussion started by: div_Neev
3 Replies

6. Solaris

CPU Utilization/Saturation

Hi! I have following problem: How can I calculate 100 % CPU utilisation if I have 8 chip (SPARCV6 dual core)? Which load is 100 % CPU utilisation? Hope someone can help! (7 Replies)
Discussion started by: Helmut
7 Replies

7. Shell Programming and Scripting

CPU Utilization

Dear friends, I am doing a report daily for all most 30 more serves... i need to check out CPU utlization bu (top command, 100 - (ideal value)) and Memory utilization too could some one help me how can i get it directly, if scripts also no problem.. i will very thankful if some one... (3 Replies)
Discussion started by: bullz26
3 Replies

8. UNIX for Dummies Questions & Answers

% CPU utilization

Hi, iam new to AIX and had a basic question. I was asked to give a chart of CPU utilization in percentage for every hour. where can i look for information and which column should i look at? I would be very thankful if somebody could respond. Thanks! karthik (1 Reply)
Discussion started by: karthikosu
1 Replies

9. UNIX for Advanced & Expert Users

CPU Utilization

On user complains about the performance of web application, as a part application support, we use following commands to see the CPU utilization in the UNIX using ‘sar' command. Some times it goes below 20 and even reaches 0. HLW$~> sar -u 10 60 SunOS HLW 5.8 Generic_117350-14 sun4u ... (2 Replies)
Discussion started by: thinakarmani
2 Replies

10. UNIX for Dummies Questions & Answers

CPU Utilization

What command do you use to verify if the CPU utilization. Example. If the CPU is at 98%? Thanks (4 Replies)
Discussion started by: kimosilk
4 Replies
Login or Register to Ask a Question