Qual é a diferença entre a memória total e livre

5

Eu tenho um sistema desktop onde o Centos 7 está instalado. Tem 4 core e 12 GB de memória. A fim encontrar a informação da memória eu uso o comando free -h . Eu tenho uma confusão.

[user@xyz-hi ~]$ free -h
              total        used        free      shared  buff/cache   available
Mem:            11G        4.6G        231M         94M        6.8G        6.6G
Swap:          3.9G        104M        3.8G

Na coluna total, está dizendo que o total em 11GB (isso é correto), na última coluna disponível, está dizendo que 6.6GB e usado é 4.6G.

Se a memória usada for de 4,6 GB, o restante deverá ser de 6,4 GB (11-4,6 = 6,4). Qual é a interpretação correta da saída acima Qual é a diferença entre memória total e disponível e livre? Estou sem memória está acima do meu caso, se eu precisar de mais 1 GB para algum novo aplicativo?

    
por Shafiq 29.12.2017 / 06:06

1 resposta

5

man free comando resolve meu problema.

DESCRIPTION
       free  displays the total amount of free and used physical and swap mem‐
       ory in the system, as well as the buffers and caches used by  the  ker‐
       nel.  The  information  is  gathered by parsing /proc/meminfo. The dis‐
       played columns are:

       total  Total installed memory (MemTotal and SwapTotal in /proc/meminfo)

       used   Used memory (calculated as total - free - buffers - cache)

       free   Unused memory (MemFree and SwapFree in /proc/meminfo)

       shared Memory used (mostly) by tmpfs (Shmem in /proc/meminfo, available
              on kernels 2.6.32, displayed as zero if not available)

       buffers
              Memory used by kernel buffers (Buffers in /proc/meminfo)

       cache  Memory  used  by  the  page  cache and slabs (Cached and Slab in
              /proc/meminfo)

       buff/cache
              Sum of buffers and cache

       available
              Estimation of how much memory  is  available  for  starting  new
              applications,  without swapping. Unlike the data provided by the
              cache or free fields, this field takes into account  page  cache
              and also that not all reclaimable memory slabs will be reclaimed
              due to items being in use (MemAvailable in /proc/meminfo, avail‐
              able on kernels 3.14, emulated on kernels 2.6.27+, otherwise the
              same as free)
    
por 29.12.2017 / 11:41