How to Create a Swap File in Linux

Spread the love

Swap within Linux are specific areas on the disk that are reserved as virtual memory. They are primarily used to enhance system performance when dealing with resource heavy tasks such as video editing. When the system starts to struggle, the kernel will move inactive processes into swap to make room for active processes within working memory.

Ordinarily, within the Linux installation, a swap partition will be created for you by default and will allocate space on the hard disk for this purpose. This has a number of drawbacks, such as space if you have a a smaller disk on an older computer, or if you are using an SSD on a newer device.

The issue with SSD drives is that they have limited write capacity within the cells. Even with wear levelling, flash memory has a finite lifespan, and multiple writes can render the individual cells unusable.

Also read: How to Manage Swap Usage in Linux

What’s the alternative?

If using a dedicated swap partition is not practical, or you simply want to try an alternative and not spend money on extra RAM, then you can use a swap file instead.

A swap file functions in a similar way to a partition, although it had the added benefit of users being able to control the size without the issue of resizing a volume. In addition, how dedicated the swap will be utilized, or the “swappiness” factor, can also be controlled by modifying the swap value.

Swap Creation

I will run through a basic example of creating a 1GB swap file.

First create the file by entering the following command within your Terminal:

sudo fallocate -l 1G /mnt/1GB.swap

If you don’t have fallocate installed, then run the more traditional command:

sudo dd if=/dev/zero of=/mnt/1GB.swap bs=1024 count=1048576

Now format the swap file:

sudo mkswap /mnt/1GB.swap

Add the swap to the system as a swap file:

sudo swapon /mnt/1GB.swap

Open the “/etc/fstab” within your favourite text editor, and add this to the end to make the change permanent:

/mnt/1GB.swap none swap sw 0 0

The line above breaks down as follows:

  • “/mnt/1GB.swap” – this is the device and file name
  • “swap” – this defines the mount point
  • “swap sw” – this shows the swap file will be activated by swapon – s (see below)
  • “0 0” – these are the options used by the dump program and the fsck command respectively

At this point, if you want to alter the “swappiness” value, then you can by editing “/etc/sysctl.conf” in the same manner as you edited the fstab above. The swappiness value is typically 60; the higher the number (up to 100) the more aggressive the swap.

vm.swappiness=10

The amount on swap needed depends on how the system performs and how memory is being used. Users should experiement to find what is best for them. If the value above is set to zero, then the swap file will only be used when the system has exhausted the memory. Values above zero will let the system swap out idle processes and free memory for disk caching; this can potentially improve overall system performance.

Also read: What You Need to Know About Swap Partition on Linux

Finally, check if the swap is active:

sudo swapon -s

Simply reboot and you will have a working swap file as opposed to a swap partition. Which option is best for you? Do you use a partition or use a dedicated file? Let us know in the comments and and also tell us any alternate methods you may have for generating a file.

Subscribe to our newsletter!

Our latest tutorials delivered straight to your inbox

Sign up for all newsletters.
By signing up, you agree to our Privacy Policy and European users agree to the data transfer policy. We will not share your data and you can unsubscribe at any time. Subscribe


Matthew Muller

Matt has worked in the tech industry for many years and is now a freelance writer. His experience is within Windows, Linux, Privacy and Android.

Comments (8)