Swap on Linux
Guide how to switch on the swap. Especially needed in IOT devices.
Swap On
sudo fallocate -l 1G /swapfile
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile
#/etc/fstab
/swapfile swap swap defaults 0 0
#
swapon --show
Guide how to switch on the swap. Especially needed in IOT devices.
sudo fallocate -l 1G /swapfile
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile
#/etc/fstab
/swapfile swap swap defaults 0 0
#
swapon --show