अगर मैं थोड़ी देर के लिए अपनी मशीन [उबंटू 16.04 64 बिट, कर्नेल 4.4] का उपयोग करता हूं, तो क्यूईएमयू को कर्नेल कैश को छोड़ने की आवश्यकता है, अन्यथा, यह रैम को आवंटित करने का प्रबंधन नहीं करेगा।
क्यों होता है?
यह एक नमूना रन है:
~$ 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
4
क्योंकि आपको कोई स्वैप नहीं मिला है।
—
माइकल हैम्पटन