64 位 Linux 中的交换空间
我有一个 64 位 Linux (SUSE 10) 双处理器。当我运行我的进程时,它使用大约 4 G 的虚拟内存。只有3G是常驻内存。其余9G左右内存是免费的。如何将这1G也加载到RAM中?为什么它仍然在交换空间中,为什么当所有 RAM 可用时内核无法将其加载到 RAM 中。
拉胡尔
I have a 64 bit Linux (SUSE 10) dual processor. When I run my process it uses around 4 G of virtual memory. Only 3G is resident memory. Rest around 9G memory is free. How to load this 1 G also in RAM? Why it is still in swap space why kernel can't load this into RAM when all the RAM is available.
Rahul
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
内核可以将数据加载到内存中。但是,当不使用它们时,它会选择将它们写入交换文件。
如果您绝对希望内存中的数据,则应该关闭所有交换文件(使用 swapoff(8)),或者使用 mlock 或 mlockall。
The kernel could load the data into memory. However, when they are not used, it choses to write them out to the swap file.
If you absolutely want the data in memory, you should either turn off all swap files (using swapoff(8)), or lock the specific pages into memory, using mlock or mlockall.