Directory /proc

From 탱이의 잡동사니
Revision as of 15:23, 23 May 2017 by Pchero (talk | contribs) (Created page with "== Overview == /proc 디렉토리 내용 정리. == Basic == /proc 디렉토리는 굉장히 특별한 가상 파일 시스템이다. 실제적인 == /proc/uptime == cat /...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Overview

/proc 디렉토리 내용 정리.

Basic

/proc 디렉토리는 굉장히 특별한 가상 파일 시스템이다. 실제적인


/proc/uptime

cat /proc/uptime 을 해보면 숫자가 다음과 같이 두개가 나온다.

$ cat /proc/uptime 
28047.65 174710.22

첫 번째 숫자는 시스템이 시작된지 흐른 시간이다. 즉, up time 을 초(second)로 나타낸 숫자이다.

그리고 두 번째 숫자는 idle 상태로 있은 시간이다. 즉, idle time 을 초(second)로 나타낸 숫자이다.

See also