ubuntu server with swap code example
Example 1: ubuntu turn off swap
sudo swapoff -a && sudo sed -i '/ swap / s/^\(.*\)$/#\1/g' /etc/fstab
Example 2: create swapfile ubuntu
/swapfile swap swap defaults 0 0
sudo swapoff -a && sudo sed -i '/ swap / s/^\(.*\)$/#\1/g' /etc/fstab
/swapfile swap swap defaults 0 0