Linux笔记-oom时anon rss和total vm的含义
2022/1/19 7:11:02
本文主要是介绍Linux笔记-oom时anon rss和total vm的含义,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
dmesg 命令: https://blog.51cto.com/yangzhiming/2343192
https://stackoverflow.com/questions/18845857/what-does-anon-rss-and-total-vm-mean
查看oom信息
dmesg命令:
友好的显示log时间信息: dmesg -T
清空dmesg: dmesg -c
查看OOM: dmesg -T | grep "Out of memory"
As I understand, the size of the virtual memory that a process uses is listed as "total-vm". Part of it is really mapped into the RAM itself (allocated and used). This is "RSS".
Part of the RSS is allocated in real memory blocks (other than mapped into a file or device). This is anonymous memory ("anon-rss") and there is also RSS memory blocks that are mapped into devices and files ("file-rss").
So, if you open a huge file in vim, the file-rss would be high, on the other side, if you malloc() a lot of memory and really use it, your anon-rss would be high also.
On the other side, if you allocate a lot of space (with malloc()), but nevers use it, the total-vm would be higher, but no real memory would be used (due to the memory overcommit), so, the rss values would be low.
据我了解,进程使用的虚拟内存大小被列为“total-vm”。 它的一部分实际上映射到 RAM 本身(分配和使用)。 这是“RSS”。
RSS 的一部分分配在实际内存块中(而不是映射到文件或设备中)。 这是匿名内存(“anon-rss”),还有映射到设备和文件的 RSS 内存块(“file-rss”)。
所以,如果你在 vim 中打开一个大文件,file-rss 会很高,另一方面,如果你 malloc() 大量内存并真正使用它,你的 anon-rss 也会很高。
另一方面,如果您分配了很多空间(使用 malloc()),但从不使用它,总虚拟机会更高,但不会使用实际内存(由于内存过度使用),所以, RSS 值会很低。
这篇关于Linux笔记-oom时anon rss和total vm的含义的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-18git仓库有更新,jenkins 自动触发拉代码怎么配置的?-icode9专业技术文章分享
- 2024-12-18Jenkins webhook 方式怎么配置指定的分支?-icode9专业技术文章分享
- 2024-12-13Linux C++项目实战入门教程
- 2024-12-13Linux C++编程项目实战入门教程
- 2024-12-11Linux部署Scrapy教程:新手入门指南
- 2024-12-11怎么将在本地创建的 Maven 仓库迁移到 Linux 服务器上?-icode9专业技术文章分享
- 2024-12-10Linux常用命令
- 2024-12-06谁看谁服! Linux 创始人对于进程和线程的理解是…
- 2024-12-04操作系统教程:新手入门及初级技巧详解
- 2024-12-04操作系统入门:新手必学指南