0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

CentOSのfreeコマンドの見方

Posted at

freeコマンドの見方

Centos8でfreeコマンド使った時の出力。実メモリを青、スワップを赤で表示。
利用可能なメモリは「available」の値であって「free」ではない。
image.png

freeの結果を図示。sharedは共有メモリに割り当てられたメモリだがひとまず無視。

image.png

バッファ/キャッシュ

通常キャッシュと呼ばれ、バッファキャッシュとページキャッシュがあり、それぞれbuffers,casheと表現される。IOの高速化のために利用され、空きメモリがあるとOSがキャッシュとして利用するので、「空きメモリ(free)」の数値だけを見ていると、空きメモリがジワジワと減っているように見えるのは、OSがキャッシュ用に空きメモリを使うため。
メモリを多く必要とするアプリケーションなどを動かす場合は、OSがうまいことやってくれて、キャッシュとして利用中のメモリから開放可能な部分を開放し空きメモリを確保する。

available

実際に利用可能なメモリ領域。「空きメモリ(free) + 開放可能なバッファ/キャッシュ」の値。

バッファ(buffers)

バッファキャッシュ。ブロックデバイスを直接アクセスするときに利用。

キャッシュ(cashe)

ページキャッシュ。ファイル単位でのアクセスするときに使用。

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?