Linux에서 ps -ef의 출력 이해

Linux에서 ps -ef의 출력 이해

Linux 시스템에서 ps -ef를 실행하면 다음이 표시됩니다. UID PID PPID C STIME TTY TIME CMD

C,TIME의 의미를 설명해주세요. TIME은 프로세스에 할당된 실제 CPU 시간인가요?

답변1

실행한 man ps후 Enter를 /SpaceShift+CSpaceEnter치면 이 줄이 표시됩니다.

   C     pcpu         cpu utilization

하지만 그것은 OBSOLETE SORT KEYS제목 아래에 있으므로 우리가 찾고 있는 것이 아닙니다.

n다음 일치 항목을 찾으려면 누르세요 .

   c           C         processor utilization. Currently, this is the
                         integer value of the percent usage over the
                         lifetime of the process.
                         (see %cpu).

좋은 것 같아요. 자세한 내용은 다음을 검색하여 %cpu찾았습니다.

   %cpu        %CPU      cpu utilization of the process in "##.#" format.
                         Currently, it is the CPU time used divided by the
                         time the process has been running cputime/realtime
                         ratio), expressed as a percentage. ...
                         (alias pcpu).

두 개의 일치 항목이 있지만 TIME일치하는 형식은 하나뿐입니다 hh:mm:ss.

   cputime     TIME      cumulative CPU time, "[DD-]hh:mm:ss" format. (alias time).

누적 CPU 시간은 프로세서가 프로세스를 실행하는 데 소비하는 시간, 즉 절전, 실행 대기 또는 I/O 대기에 소요되는 시간이 아닌 CPU 주기의 실제 사용 시간입니다.

에 설명된 합계 값을 합산하여 utime결정 됩니다.stimeproc(5) 매뉴얼 페이지.

  utime %lu   Amount of time that this process has been scheduled in user mode...
  stime %lu   Amount of time that this process has been scheduled in kernel mode...

관련 정보