How to increase swap space?

I have, by default, 250MB of swap space in Ubuntu, and I want to expand it to a larger size. I need 800MB, which I think will be enough to open several applications without having to hit the current limit of swap. I hope someone can help me.


You can always create a swap file to add more swap space. This is not the same in every aspect as swap partition, but it will be easy and dynamic.

In the following steps, change /media/fasthdd/swapfile.img to anything you like. For example, it can be /swap.img as well. /media/fasthdd/swapfile.img is just an example filename. If you are using this one, then of course there must be a directory /media/fasthdd/ with enough free space for your new swap file.

Use any terminal application to run the commands of the following steps. All commands should be run with root privileges. To do this, you can either add sudo to the beginning of every command or run sudo bash before running the commands.

  1. Create an empty file:

    This file will contain virtual memory contents so make file big enough for your needs. This one will create a 1GiB file, which means +1GiB swap space for your system:

    dd if=/dev/zero of=/media/fasthdd/swapfile.img bs=1024 count=1M
    

    If you want to make a 3GiB file, then change count value to count=3M. See man dd for more information.

  2. Bake the swap file:

    The following command is going to make a "swap filesystem" inside your fresh swap file.

    mkswap /media/fasthdd/swapfile.img
    
  3. Bring up on boot:

    To make sure that your new swap space is activated while booting up computer, you should add it to the filesystem configuration file /etc/fstab. Add it to the end of the file. This is recommended because other filesystems (at least one that contains a swap file) must be mounted in read-write mode before we can access any files.

    # Add this line to /etc/fstab
    /media/fasthdd/swapfile.img swap swap sw 0 0
    
  4. Activate:

    You can either reboot your computer or activate the new swap file by hand with the following command:

    swapon /media/fasthdd/swapfile.img
    

If everything goes well, you should see that more swap space is available for use. You can use the following commands to check your new swap and confirm that it is active:

$ cat /proc/swaps
Filename                           Type       Size    Used    Priority
/media/fasthdd/swapfile.img        file       8388604 2724    -1

$ grep 'Swap' /proc/meminfo
SwapCached:         4772 kB
SwapTotal:       8388604 kB
SwapFree:        8355812 kB

Resize Swap to 8GB

# Turn swap off
# This moves stuff in swap to the main memory and might take several minutes
sudo swapoff -a

# Create an empty swapfile
# Note that "1G" is basically just the unit and count is an integer.
# Together, they define the size. In this case 8GB.
sudo dd if=/dev/zero of=/swapfile bs=1G count=8
# Set the correct permissions
sudo chmod 0600 /swapfile

sudo mkswap /swapfile  # Set up a Linux swap area
sudo swapon /swapfile  # Turn the swap on

Check if it worked

grep Swap /proc/meminfo

Make it permanent (persist on restarts)

Add this line to the end of your /etc/fstab:

/swapfile swap swap sw 0 0

GUI method for increasing the size of swap partition

Another way to increase the swap size is to use the GParted partition Editor. In short, you resize the swap partition, then right click on it and choose "Swapon".

It's easier to boot gparted-live-disk or an Ubuntu live disk (so that the all /dev/sda partitions will be unmounted). If you run Ubuntu live disk in some versions before 18.04, you may need to install gparted by running the commands below:

sudo apt-get update
sudo apt-get install gparted && sudo gparted

You must be able to increase the size of swap partition only if there is an unallocated space present before or after the swap partition. If there was no unallocated space (the space which we are trying to add with swap partition) below or above the swap partition, then we have to resize the partitions and get that unallocated space.

Case 1 - unallocated space present before or after the swap partition

GParted partitions

In the above screenshot, I had 11.4 GB of unallocated space before the linux-swap and 12.8 GB after the swap partition.

  • To resize, right click on the swap partition (/dev/sda9 here) and click on the Resize/Move option. It will look like this:

    enter image description here

  • Dragging the slider arrows left or right then click on the Resize/Move button. Your swap partition will be resized.


Case 2 - unallocated space is between the partitions

enter image description here

In the above screenshot, the unallocated space which we wants to add to the swap partition was between dev/sda7 and /dev/sda8.To move the unallocated space from that to just above swap partition,we have to follow the simple steps given below,

  • Right-click on the /dev/sda8 partition and click on Resize/Move option.

    enter image description here

  • click and move the slider to the extreme left,so that the unallocated space which was just above the /dev/sda8 partition will comes below /dev/sda8.After that click Resize/Move button.

  • And now the unallocated space was just above to the swap partition which was like Case 1.Now follow Case 1.


Case 3 - if the unallocated space was present outside the Extended partition)

enter image description here

I had an unallocated space of 18 GB just below to the extended partition.To add this space to the linux-swap partition(which was present inside the extended partition),we have to follow the below steps,

  • Right-click on the extended partition and select Resize/Move option,it will be like the below screenshot

    enter image description here

  • Click and drag the arrow to the extreme right and click on Resize/Move,so that the unallocated space of 18 GB will comes at the bottom of extended partition.I had a 14.80 GB of unallocated space already present at the bottom and now the 18.34 GB combines with that to create unallocated space of (18.34+14.80 GB) at the bottom of the extended partition.

  • Now there was an unallocated space just below to the swap partition,it will be like Case 1,then follow case 1.

NOTE: Don't forget to take backup of all your important datas before proceeding the above operations.


You can also use fallocate if you want to reserve space for your swapfile, without the need to fill the file with 0 through dd.

From the man page:

DESCRIPTION
   fallocate is  used to preallocate blocks  to a file.

   For filesystems  which support the  fallocate system
   call, this is done  quickly by allocating blocks and
   marking them  as uninitialized,  requiring no  IO to
   the data blocks. This is much faster than creating a
   file by filling it with zeros.

If you already have a swap defined, you can either remove it or keep it, and your *nix will manage it (even better with by defining a swapon priority). This could be usefull, in case you want to spread your swap between different devices, drive (based on their speed or other custom needs, see What is the purpose of multiple swap files on StackExchange).

Simple fallocate usage for adding a second swap file

Check swap situation:

$ sudo swapon -s
Filename                Type        Size    Used    Priority
/swapfile               file        262140  246276  -1

Create a 4G swap file

Standard way of creating and activating a swap file:

size="4G"
file_swap=/swapfile_$size.img
sudo touch $file_swap
sudo fallocate -l $size /$file_swap
sudo mkswap /$file_swap
sudo swapon -p 20 /$file_swap

One-liner:

$ size="4G" && file_swap=/swapfile_$size.img && sudo touch $file_swap && sudo fallocate -l $size /$file_swap && sudo mkswap /$file_swap && sudo swapon -p 20 /$file_swap

Make your swap permanent

Add a line in your /etc/fstab file so that swap will be initialized on the next reboot (we also update here the priority of the newly created swap space and we update the priority of the old swap file).

In your /etc/fstab file, notice the priority of the prev swap is now 10.

/swapfile    none    swap    sw,pri=10      0       0
/swapfile_4G.img     none    swap    sw,pri=20      0       0

Check swap situation after reboot:

$ sudo swapon  -s
Filename       Type     Size        Used    Priority
/swapfile      file     262140      0       10
/swapfile_4G.img       file     4194300     0       20

Remove one of the swap spaces (for example the original 256Mb)

Edit /etc/fstab

Remove the line related to the swap you want to remove.

Delete that swap

Delete and remove the swap file.

sudo swapoff /mnt/swapfile && sudo rm /mnt/swapfile

Resources:

  • The official Ubuntu swap FAQ page