increasing swapfile space on the raspberry pi 4

Update 20 April 2020

This post’s original recommendation only works with a Raspberry Pi with 1GiB of memory. For a Pi with 2 or 4GiB, the swap file size is clamped to 2GiB, as if CONF_MAXSWAP were uncommented and active. Since the 2GiB Raspberry Pi 4 is replacing the 1GiB version, then the original post does not apply at all. For a Raspberry Pi with 2GiB or more memory, you need to:

  • Comment out CONF_SWAPFACTOR (line 19)
  • Uncomment CONF_SWAPSIZE (line 15) and set it to the size you need in MiB.
    • For example, CONF_SWAPSIZE=4096 will produce a swap file size of 4GiB.
  • Uncomment CONF_MAXSWAP (line 25) and set it to the maximum size you want your swap file in MiB.
    • For example, CONF_MAXSWAP=4096 will work with CONF_SWAPSIZE to produce your 4GiB swap file.

This is what I had to do to create a 4GiB swap file on my Raspberry Pi 4B with 4GiB of memory.

Original Post

Raspbian desktop with LXTerminal running htop and Chromium with multiple open tabs

If you’re going to use the Raspberry Pi 4 as a basic personal computer, meaning lots of open applications with Chromium in the mix with its multiple open tabs, then you’re going to have to adjust certain aspects of Raspbian’s operation to make it behave the way you want it to. A key aspect is swap space.

Swap space is specialized disk space to support the operation of virtual memory. Virtual memory is a memory management technique where the operating system (in this case Raspbian) will write out to disk the contents of memory that are not being used when other active applications demand more memory than is physically available. That means if you have a Raspberry Pi with only 1GB of physical memory, and you have launched a number of applications with, for example, a combined demand of 1.2GB of physical memory, then Raspbian (based on Debian Linux) will determine what applications can be idled and what portions of physical memory associated with those applications are being used at the moment and write those memory portions out to a disk structure called swap, freeing up enough memory for the newly running application to execute. When idled applications need to run, then their memory, if swapped out, will be swapped back in before they are allowed to run again, and if there’s still not enough to support everything, then new idle candidates will have their memory swapped out to disk. It sounds complicated, but it’s been honed now for decades and works very well. That sounds like a wonderful system as long as you have enough swap (disk) space.

The problem is that stock Raspbian installs with only 100M defined for swap, and as you’ll note in the screenshot above, I’ve exceeded that default amount by 42MB for a total (at that point in time) of 142MB just by having an LXTerminal open with two tabs and Chromium open with seven tabs. Something had to be adjusted before this happened because when swap is filled up (exhausted in the parlance) then applications begin to crash. To avoid this, I modified a swap configuration file as soon as I had Raspbian installed. That file is /etc/dphys-swapfile.

What you need to do is execute ‘sudo vi /etc/dphys-swapfile’ (if you don’t know vi, then use another editor you’re more comfortable with):

# /etc/dphys-swapfile - user settings for dphys-swapfile package# author Neil Franklin, last modification 2010.05.05# copyright ETH Zuerich Physics Departement#   use under either modified/non-advertising BSD or GPL license# this file is sourced with . so full normal sh syntax applies# the default settings are added as commented out CONF_*=* lines# where we want the swapfile to be, this is the default#CONF_SWAPFILE=/var/swap# set size to absolute value, leaving empty (default) then uses computed value#   you most likely don't want this, unless you have an special disk situationCONF_SWAPSIZE=# set size to computed value, this times RAM size, dynamically adapts,#   guarantees that there is enough swap without wasting disk space on excessCONF_SWAPFACTOR=2# restrict size (computed and absolute!) to maximally this limit#   can be set to empty for no limit, but beware of filled partitions!#   this is/was a (outdated?) 32bit kernel limit (in MBytes), do not overrun it#   but is also sensible on 64bit to prevent filling /var or even / partition#CONF_MAXSWAP=2048

On line 15, remove any value (the default is actually set to 100 in spite of what the comment right above it says), also uncommenting line 19. Then reboot. The OS will determine the maximum for you during boot, which in my case was 1.7GB, instead of the fixed default of 100MB.

As a historical note I use to just change CONF_SWAPSIZE to 2048 (2GB) because I used the very old rule of thumb to have a swap space twice my physical memory. In my calculation I used the absolute total memory of the Raspberry Pi (1GB), which is why my value is a bit higher than what is shown above. It would appear to be the same formula that Raspbian uses. The value shown when automatically determined is a bit more exact. Actual available memory is the maximum installed minus video memory used, which is 872MB in this case. Multiplying available memory by two yields 1,744MB, or 1.7GB, the maximum swap space value shown by htop.