RedHat Linux >> Fundamentals of the GNU/Linux
|
[목차] |
제3장 리눅스 명령어
9. 프로세스 상황 알아보기 - ps 현재 실행되고 있는 명령어는 어떤 것이 있을 까요? 리눅스는 dos와는 다르게 멀티 태스킹을 제공하고 잇기 때문에 여러 명령어나 프로그램의 실행이 끝나지 않은 상태로 계속 유지되는 경우가 있습니다. 이러 때 어떤 명령어가 실행중인지 알 수 있는 방법이 있습니다. 바로 'ps' 명령어를 사용하면 됩니다. [root@leelab /root]# ps pid tty stat time command 381 1 s 0:00 /sbin/mingetty tty1 382 2 s 0:00 /sbin/mingetty tty2 383 3 s 0:00 /sbin/mingetty tty3 384 4 s 0:00 /sbin/mingetty tty4 1171 p1 s 0:00 -bash 1352 p1 r 0:00 ps [root@leelab /root]#
현재 실행되고 있는 명령어가 나와있습니다. 더 자세히 알고 싶으면 옵션 'a', 'x'를 붙여서 사용하면 됩니다.
[root@leelab /root]# ps -ax |more pid tty stat time command 1 ? s 0:02 init [3] 2 ? sw 0:00 (kflushd) 3 ? sw< 0:00 (kswapd) 4 ? sw 0:00 (md_thread) 5 ? sw 0:00 (md_thread) 37 ? s 0:00 /sbin/kerneld 222 ? s 0:00 syslogd 365 ? s 0:00 nmbd -d 381 1 s 0:00 /sbin/mingetty tty1 382 2 s 0:00 /sbin/mingetty tty2 383 3 s 0:00 /sbin/mingetty tty3 [root@leelab /root]#
|
[목차] |