Ps command on cpu usage and time


 
Thread Tools Search this Thread
Operating Systems Linux Ps command on cpu usage and time
# 1  
Old 10-11-2017
Ps command on cpu usage and time

Hi All,

Am very new to Linux and unix ...need below help .
need to list of process consuming more than 40% cpu and which are older than 10 days of a particular user ....



Thanks
V
# 2  
Old 10-11-2017
Quote:
Originally Posted by venky456
Hi All,

Am very new to Linux and unix ...need below help .
need to list of process consuming more than 40% cpu and which are older than 10 days of a particular user ....



Thanks
V
If you have a process using 40% CPU and (keyword AND) older than 10 days, you need to kill it, or fix it Smilie

Auditing. Do you have any auditing running? The question's vague, but this isn't the kind of thing you can just 'pluck' out of the air.
# 3  
Old 10-11-2017
first i need check which process are those consuming more than 40% cpu AND 10 days older and then need to fix them

---------- Post updated at 01:29 AM ---------- Previous update was at 01:11 AM ----------

can someone help me with the command
# 4  
Old 10-11-2017
Quote:
Originally Posted by venky456
first i need check which process are those consuming more than 40% cpu AND 10 days older and then need to fix them
---------- Post updated at 01:29 AM ---------- Previous update was at 01:11 AM ----------
can someone help me with the command
Hello venky456,

So this is how I would deal with this kind of situation during the period of issue.
Check the server's memory and cpu first with commands as follows.
To get memory details:
Code:
free -g

To get CPU details: This will run 20 times in difference of 1 second or so, you could increase the values as per your convenience.
Solution 1st:
Code:
vmstat 1 20

Solution 2nd: This will provide you all processes and you could sort it as per your need for CPU, memory etc and could find out the culprits.
Code:
top
OR
htop

There are other ways too, but you could take it as a starting point. Let me know in case of any queries.

Thanks,
R. Singh
# 5  
Old 10-11-2017
Now, your question is quite vague. What is your ultimate goal? For finding the process(es), you already named the ps command - does it do what you want or are you stuck somewhere?

If you want to go further, analyze and correct the program / application - which is the way to go - there's more than one command necessary. You need to dig deep into the run time environment, the input data and channels, and eventually read and understand the program's source code. Be prepared for a lengthy process for "fixing" the culprit.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help with speeding up my working script to take less time - how to use more CPU usage for a script

Hello experts, we have input files with 700K lines each (one generated for every hour). and we need to convert them as below and move them to another directory once. Sample INPUT:- # cat test1 1559205600000,8474,NormalizedPortInfo,PctDiscards,0.0,Interface,BG-CTA-AX1.test.com,Vl111... (7 Replies)
Discussion started by: prvnrk
7 Replies

2. Red Hat

CPU Usage statistics Dump in a text file over a period of time

I am facing issue related to performance of one customized application running on RHEL 5.9. The application stalls for some unknown reason that I need to track. For that I require some tool or shell scripts that can monitor the CPU usage statistics (what we get in TOP or in more detail by other... (6 Replies)
Discussion started by: Anjan Ganguly
6 Replies

3. AIX

Wait time shows high CPU usage

Hi, I can't seem to make sense of this. My wait time is showing really high but vmstat's and topas are showing normal usage. ps aux USER PID %CPU %MEM SZ RSS TTY STAT STIME TIME COMMAND root 9961810 5680.7 0.0 448 384 - A Dec 16 6703072:12 wait ... (2 Replies)
Discussion started by: techy1
2 Replies

4. Shell Programming and Scripting

Command to check the CPU usage for particular user

Hi All, Can anybody knows, how to check the CPU usage in percentage for a particular process along with its user and PID? Thanks in advance!! (3 Replies)
Discussion started by: AB10
3 Replies

5. AIX

How to monitor the IBM AIX server for I/O usage,memory usage,CPU usage,network..?

How to monitor the IBM AIX server for I/O usage, memory usage, CPU usage, network usage, storage usage? (3 Replies)
Discussion started by: laknar
3 Replies

6. UNIX for Dummies Questions & Answers

Unix Top Command and sorting by CPU Usage

Ok, so I am using the Top command on my linux VPS to try and see the processes using the most CPU %. I hit the P to sort by CPU % but it wants to sort them from lowest to highest (ascending). My Telnet-SSH screen is only about 60 rows high so the processes with the highest CPU % usage are at the... (6 Replies)
Discussion started by: davemehta
6 Replies

7. Solaris

Multi CPU Solaris system shows 100% CPU usage.

Hello Friends, On one of my Solaris 10 box, CPU usage shows 100% using "sar", "vmstat". However, it has 4 CPUs and prstat and glance are not showing enough processes to justify high CPU utilization. ========================================================================= $ prstat -a ... (4 Replies)
Discussion started by: mahive
4 Replies

8. UNIX for Dummies Questions & Answers

top command + %CPU usage exceeds 100%?

Hi there. I was looking at the output from running top and for short amounts of time, when I see all the process running and add up the values in the %CPU column the value exceeds 100% (I just add them quickly in my head). I assume that if I were to add up all my processes in the entire list,... (2 Replies)
Discussion started by: Carl1976
2 Replies

9. HP-UX

how can I find cpu usage memory usage swap usage and logical volume usage

how can I find cpu usage memory usage swap usage and I want to know CPU usage above X% and contiue Y times and memory usage above X % and contiue Y times my final destination is monitor process logical volume usage above X % and number of Logical voluage above can I not to... (3 Replies)
Discussion started by: alert0919
3 Replies

10. HP-UX

How to summary one command's cpu usage?

I want to record one application's(like oracle etc...) CPU usage summary. I can filter by "ps". But how to sum? Thanks (1 Reply)
Discussion started by: jiarong.lu
1 Replies
Login or Register to Ask a Question