64 位 Linux 中的交换空间

发布于 2024-08-04 06:36:52 字数 157 浏览 8 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

塔塔猫 2024-08-11 06:36:52

内核可以将数据加载到内存中。但是,当不使用它们时,它会选择将它们写入交换文件。

如果您绝对希望内存中的数据,则应该关闭所有交换文件(使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文