카테고리 없음

리눅스 ps 커맨드 STAT 값 의미

재삐신생 2024. 5. 30. 18:47
반응형

STAT값의 의미를 살펴보자.

메뉴얼을 확인하면, 아래와 같다.

$ man ps

...
PROCESS STATE CODES
       Here are the different values that the s, stat and state output specifiers (header "STAT" or "S") will display to describe the state of a process:

               D    uninterruptible sleep (usually IO)
               I    Idle kernel thread
               R    running or runnable (on run queue)
               S    interruptible sleep (waiting for an event to complete)
               T    stopped by job control signal
               t    stopped by debugger during the tracing
               W    paging (not valid since the 2.6.xx kernel)
               X    dead (should never be seen)
               Z    defunct ("zombie") process, terminated but not reaped by its parent

       For BSD formats and when the stat keyword is used, additional characters may be displayed:

               <    high-priority (not nice to other users)
               N    low-priority (nice to other users)
               L    has pages locked into memory (for real-time and custom IO)
               s    is a session leader
               l    is multi-threaded (using CLONE_THREAD, like NPTL pthreads do)
               +    is in the foreground process group
...

 

정리해보면

D - 중단불가 대기상태 (대체로 IO로 인한 대기)

I - 유휴 커널 스레드

R - 실행중 or 실행가능 (실행큐에 있음)

S -  중단가능 대기상태 (이벤트 완료를 기다림)

T - 작업 제어 시그널에 의한 중지상태

t - 트레이싱 하는 동안 디버거에 의한 중지상태

W - 페이징 (커널 버전 2.6.xx 이후로 사용안함)

X - 죽음 (보여서는 안됨)

Z - 사용되지 않는 프로세스(좀비 프로세스), 종료됨, 하지만 부모프로세스에 의해 회수되지 않음

< - 높은 우선순위(다른 사용자들에게 nice하지 않음)

N - 낮은 우선순위(다른 사용자들에게 nice)

L - 메모리에서 페이지가 잠금된 상태

s - 세션 리더

l - 멀티 쓰레드 상태(CLONE_THREAD)

+ - 포어그라운드(fore-ground)프로세스 그룹에 있음

 

반응형