30.4. memory

简介:
[root@F5:Active] config # free -m
             total       used       free     shared    buffers     cached
Mem:          7995       7661        333          0         42        299
-/+ buffers/cache:       7318        676
Swap:         1023          0       1023
		
[root@F5:Active] config # cat /proc/meminfo
MemTotal:      8187068 kB
MemFree:        341868 kB
Buffers:         43956 kB
Cached:         307236 kB
SwapCached:          0 kB
Active:         482300 kB
Inactive:       205392 kB
HighTotal:           0 kB
HighFree:            0 kB
LowTotal:      8187068 kB
LowFree:        341868 kB
SwapTotal:     1048312 kB
SwapFree:      1048312 kB
Dirty:             208 kB
Writeback:           0 kB
AnonPages:      350304 kB
Mapped:         108304 kB
Slab:            45012 kB
PageTables:       4420 kB
NFS_Unstable:        0 kB
Bounce:              0 kB
CommitLimit:   1603924 kB
Committed_AS:   729416 kB
VmallocTotal: 34359738367 kB
VmallocUsed:      5544 kB
VmallocChunk: 34359732627 kB
HugePages_Total:  3455
HugePages_Free:     14
HugePages_Rsvd:      0
Hugepagesize:     2048 kB

		





原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

目录
相关文章
|
5月前
|
Android开发
Out of memory on a 11111-byte allocation
Out of memory on a 11111-byte allocation
41 1
|
5月前
|
监控 数据处理 算法框架/工具
Allocation of 179437568 exceeds 10% of free system memory.
本文讨论了在Python编程中遇到的"Allocation of XXXX exceeds 10% of free system memory"错误,并提供了几种解决方法,包括调整代码逻辑以减少内存分配和更改批量大小。
|
8月前
|
安全 数据处理 C#
深入理解C#中的Span<T>和Memory<T>
【1月更文挑战第8天】本文旨在探讨C#中引入的两个重要类型:Span<T>和Memory<T>。它们为开发者提供了一种高效且安全的方式来处理内存中的数据。文章首先介绍这两个类型的基本概念和用途,接着深入分析它们的工作原理和适用场景,并通过代码示例展示如何在实际应用中使用它们。
|
Docker 容器
解决Native memory allocation (mmap) failed to map 2060255232 bytes for committing reserved memory.
解决Native memory allocation (mmap) failed to map 2060255232 bytes for committing reserved memory.
1458 0
ZCMU - 2018: Memory leak
ZCMU - 2018: Memory leak
134 0
fork Cannot allocate memory
本章节分享一下经常会遇到 cannot allocate memory的解决方法
fork Cannot allocate memory
|
监控 应用服务中间件 nginx