-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
리눅스 프로세스 메모리 확인시 유의사항 #258
Labels
Comments
https://stackoverflow.com/questions/15907807/linux-rss-from-ps-res-from-top
cf
|
|
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://unix.stackexchange.com/questions/34795/correctly-determining-memory-usage-in-linux
free -m
에서 메모리 사용량 합과top
결과의 RES 합이 다를 수 있다.top
에서는 이를 그냥 각각 표현한다. 무언가 변경이 있을 때만 복제하고 변경한다. (Copy On Write) 이 때문에free
에서 사용중인 메모리 합이top
결과의 RES 단순 합보다 작아질 수 있다.free
에서 사용중인 메모리 합이top
결과의 단순 합보다 커질 수 있다.여러가지 이유가 있기 때문에 단순합으로만 계산해서는 안된다.
The text was updated successfully, but these errors were encountered: