...
Add the following lines to /etc/sysctl.conf (to prevent "page allocation failure" errors, and to prevent swapping):
| Code Block | ||
|---|---|---|
| ||
vm.min_free_kbytes = 1572864 |
...
vm.swappiness = 0 |
Remove swap:
| Code Block | ||
|---|---|---|
| ||
swapoff -a |
Edit /etc/fstab and comment the swap line
...