How to Make a Swap Space Using a Swap File in Linux

crazyoptimist
2 min readOct 7, 2020
htop

This article has been ported from my personal blog.
You might have been stuck in memory leak when building some kinda javascript-heavy frontend apps like Vue or React on a cloud server itself. Just for serving built artifacts, we do not need large instances, but still the building process is always hungry for more memory you know.
Below is how to resolve such specific problem.

Oh, this is not the case if you already have a dedicated(partitioned) swap space, it’s a better option in any case but in most cases, we will be playing with servers without a swap patition.
Okay, let’s get started.

As a general rule, calculate swap space according to the following:

Decide your swap file size

Important Note: Swap sapce should never be less than 32 MB!

Steps

Create a swap file

sudo dd if=/dev/zero of=/swapfile bs=128M count=YOUR_COUNT

In the above command, bs is block size which should be less than the available memory at that moment.
bs * YOUR_COUNT will be your swap file size, for example, bs=128M count=32 means your swap file will be 4096 MB in size.

Update the read and write permissions for the swap file

sudo chmod 600 /swapfile

Set up a Linux swap area

sudo mkswap /swapfile

Make the swap file available for immediate use by adding the swap file to swap space

sudo swapon /swapfile

Verify that the procedure was successful:

sudo swapon -s

Enable the swap file at boot time by editing the /etc/fstab file

sudo vim /etc/fstab

Add the following line at the end of the file:

/swapfile swap swap defaults 0 0

That’s it.
Happy coding!

--

--