"리눅스 ps"의 두 판 사이의 차이

10번째 줄: 10번째 줄:
  8806 pts/0    00:00:00 bash
  8806 pts/0    00:00:00 bash
  8839 pts/0    00:00:00 ps
  8839 pts/0    00:00:00 ps
</source>
<source lang='dos'>
[root@jmnote ~]# ps aux
USER      PID %CPU %MEM    VSZ  RSS TTY      STAT START  TIME COMMAND
root        1  0.0  0.0  10368    80 ?        Ss  Oct23  0:03 init [3]                                       
root        2  0.0  0.0      0    0 ?        S<  Oct23  0:01 [migration/0]
root        3  0.0  0.0      0    0 ?        SN  Oct23  0:00 [ksoftirqd/0]
... (생략)
</source>
</source>



2013년 11월 16일 (토) 19:31 판

1 개요

ps (← process)

2 실행 예시

[root@jmnote ~]# ps
  PID TTY          TIME CMD
 8806 pts/0    00:00:00 bash
 8839 pts/0    00:00:00 ps
[root@jmnote ~]# ps aux
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root         1  0.0  0.0  10368    80 ?        Ss   Oct23   0:03 init [3]                                        
root         2  0.0  0.0      0     0 ?        S<   Oct23   0:01 [migration/0]
root         3  0.0  0.0      0     0 ?        SN   Oct23   0:00 [ksoftirqd/0]
... (생략)
[root@jmnote ~]# ps -ef
UID        PID  PPID  C STIME TTY          TIME CMD
root         1     0  0 Oct23 ?        00:00:03 init [3]                                               
root         2     1  0 Oct23 ?        00:00:01 [migration/0]
root         3     1  0 Oct23 ?        00:00:00 [ksoftirqd/0]
... (생략)

3 같이 보기

4 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}