TOP command on SUSE Linux Enterprise Server to find a resource intensive process?

1

I have a box running SLES but I can't run TOP, apparently it's not installed on the box, is there a way for me to find a resource intensive process that's slowing the box down?

Any help will be much appreiciated.

Thanks

MaYaN

Posted 2012-05-22T09:17:08.350

Reputation: 363

Answers

2

I would use something like

ps -eo pcpu,pid | sort

But may be you just can't locate top? Did you try /usr/bin/top?

Alexander Bakulin

Posted 2012-05-22T09:17:08.350

Reputation:

You probably mean sort -r – Lev Levitsky – 2012-05-22T09:25:01.453

No, I'd like to see the most cpu-intensive process at the end of the output. – None – 2012-05-22T09:25:45.040

@AlexanderBakulin Thanks, that did solve the problem :-) – None – 2012-05-22T09:35:38.310

@MaYaN: Glad to hear it! – None – 2012-05-22T09:41:12.050