如果Linux缓存太大,为什么QEMU不能分配内存?

前端之家收集整理的这篇文章主要介绍了如果Linux缓存太大,为什么QEMU不能分配内存?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我使用我的机器[Ubuntu 16.04 64位,内核4.4]一段时间,QEMU需要删除内核缓存,否则,它将无法分配RAM.

为什么会这样?

这是一个示例运行:

~$free -m
              total        used        free      shared  buff/cache   available
Mem:          15050        5427        3690          56        5931        4803
Swap:             0           0           0

~$sudo qemu-system-x86_64 -m 10240 # and other options
qemu-system-x86_64: cannot set up guest memory 'pc.ram': Cannot allocate memory

~$echo 3 | sudo tee /proc/sys/vm/drop_caches
3

~$free -m
              total        used        free      shared  buff/cache   available
Mem:          15050        1799        9446          56        3803        9414
Swap:             0           0           0

~$sudo qemu-system-x86_64 -m 10240 # and other options
qemu-system-x86_64: cannot set up guest memory 'pc.ram': Cannot allocate memory

~$echo 3 | sudo tee /proc/sys/vm/drop_caches
3

~$free -m
              total        used        free      shared  buff/cache   available
Mem:          15050        1502       10819          56        2727       10784
Swap:             0           0           0

~$sudo qemu-system-x86_64 -m 10240 # and other options
# Now QEMU starts

解决方法

并非所有缓存数据都可以立即丢弃.例如,缓存的脏页必须先写回磁盘才能从RAM中删除.你没有交换,所以在这些写入完成之前,QEMU的可用空间不足.

你真的应该添加一个合理的交换量.你不能指望内存管理员用一只手绑在背后做得很好.

原文链接:https://www.f2er.com/linux/401153.html

猜你在找的Linux相关文章