I was trying to set up my first QEMU KVM Win10 machine according to the guide in the following link: https://heiko-sieger.info/running-wi...gure_hugepages
The author recommends, for performance tuning reasons, to add the following lines to /etc/sysctl.conf:
But when I run sudo sysctl -p to put the new settings into effect., I get the following error:
When I replace min_free_kbytes with vm.min_free_kbytes, I do not get any error.
1.) Did author actually want to write vm.min_free_kbytes instead of min_free_kbytes? Did he make a mistake?
2.) Is there a difference between these two?
The author recommends, for performance tuning reasons, to add the following lines to /etc/sysctl.conf:
Code:
kernel.shmmax = 8589934592
vm.hugetlb_shm_group = 129
min_free_kbytes = 112640
Code:
kernel.shmmax = 8589934592
vm.hugetlb_shm_group = 127
sysctl: cannot stat /proc/sys/min_free_kbytes: No such file or directory
1.) Did author actually want to write vm.min_free_kbytes instead of min_free_kbytes? Did he make a mistake?
2.) Is there a difference between these two?