проверьте все процессы, которые занимают более 5% процессорного времени - PullRequest
0 голосов
/ 21 февраля 2011

Как проверить все процессы, которые занимают более 5% процессорного времени в HPUX

Ответы [ 2 ]

1 голос
/ 21 февраля 2011

Обычно нужно запустить top или top -o cpu.

top(1)                                                                  top(1)

NAME
       top - display and update sorted information about processes

SYNOPSIS
       top    [-a | -d | -e | -c <mode>]
              [-F | -f]
              [-h]
              [-i <interval>]
              [-l <samples>]
              [-ncols <columns>]
              [-o <key>] [-O <skey>]
              [-R | -r]
              [-S]
              [-s <delay>]
              [-n <nprocs>]
              [-stats <keys>]
              [-pid <processid>]
              [-user <username>]
              [-U <username>]
              [-u]

DESCRIPTION
       The  top program periodically displays a sorted list of system process-
       es.  The default sorting key is pid, but other keys  can  be  used  in-
       stead.  Various output options are available.
0 голосов
/ 22 февраля 2011
UNIX95=1 ps -eopid,cpu|awk '$2>5{print $1}'
...