SWAP-File erstellen

Erstellen des SWAP-File

dd if=/dev/zero of=/swapfile bs=1M count=512
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile

Eintrag für fstab

nano /etc/fstab
/swapfile none swap defaults 0 0