Swap linux
From Teknologisk videncenter
Using file as temporary swap
free
...
dd if=/dev/zero of=/swapfile bs=1M count=1000 # Create swapfile on 1GB
chmod 0600 /swapfile # Make it secure
mkswap /swapfile # Prepare swapfiile for use
swapon /swapfile # Start usiong it
free
....