Cache
如果 Linux 記憶體太大,為什麼 QEMU 不能分配記憶體?
如果我使用我的機器
$$ Ubuntu 16.04 64 bit, kernel 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 根本沒有足夠的可用空間。
您確實應該添加合理數量的交換。你不能指望記憶體管理器在一隻手被綁在背後的情況下做得很好。