Diff for "SwapFaq"


Differences between revisions 18 and 106 (spanning 88 versions)
Revision 18 as of 2007-11-21 17:08:14
Size: 10870
Editor: 195
Comment: added SwapSpace
Revision 106 as of 2022-07-27 19:13:47
Size: 19283
Editor: chick
Comment: Use of fallocate is not recommended in some file systems - see man swapon
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
#title Swap Partition FAQ
||<tablestyle="float:right; font-size: 0.9em; width:40%; background:#F1F1ED; margin: 0 0 1em 1em;" style="padding:0.5em;">'''Contents'''[[BR]][[TableOfContents(2)]]||
#title Swap FAQ

||<tablestyle="float:right; font-size: 0.9em; width:40%; background:#F1F1ED; margin: 0 0 1em 1em;" style="padding:0.5em;"><<TableOfContents(2)>>||
Line 7: Line 8:
    * People always wonder how much swap they should put on install, or after installing without a clue think "oh my god", have I put enough swap? Maybe I should just reinstall with more swap?     * People always wonder how much swap they should create at install time, or after installing they may think, "have I made a large enough swap? Should I reinstall with a larger swap?"
Line 11: Line 12:
    * You will be given very simple answers (so that you do not have to lose too much time reading this FAQ) and some explanations that may help you make your own opinion.     * You will be given very simple answers (to prevent losing too much time reading this FAQ) and some explanations that may help you form your own opinion.


== What is swap? ==
Swap space is the area on a hard disk. It is a part of your machine's Virtual Memory, which is a combination of accessible physical memory (RAM) and the swap space. Swap holds memory pages that are temporarily inactive. Swap space is used when your operating system decides that it needs physical memory for active processes and the amount of available (unused) physical memory is insufficient. When this happens, inactive pages from the physical memory are then moved into the swap space, freeing up that physical memory for other uses. Note that the access time for swap is slower, depending on the speed of the hard drive. Do not consider it to be a complete replacement for the physical memory. Swap space can be a dedicated swap partition (recommended), a swap file, or a combination of swap partitions and swap file(s).


== Why do I need swap? ==
__Memory consuming programs__
Sometimes, a large program (like LibreOffice, Neverwinter Nights, or a video editor) make the entire system need extra memory. A significant number of the pages used by these large programs during its startup may only be used for initialization and then never used again. The system can swap out those pages and free the memory for other programs or even for the disk cache. In these cases, swap will be used to help the system handle any extra load.

__Hibernation (suspend-to-disk)__
The hibernation feature (suspend-to-disk) writes out the contents of RAM to the swap partition before turning off the machine. Therefore, your swap partition should be at least as big as your RAM size. Although the latest versions of Ubuntu don't support hibernation OOTB you may configure your system to allow Hibernation. In both alternatives (PM-UTILS or SYSTEMD) you may use a partition or a file.

__Unforeseeable Circumstances__
Unforeseeable events can and will happen (a program going crazy, some action needing much more space than you thought, or any other unpredictable combination of events). In these cases, swap can give you an extra delay to figure out what happened, or to finish what you are working on.

__Optimizing memory usage__
Since mechanical hard drives are considerably slower than RAM (SSD - Solid State Drive - storage is not as slow as physical drives, but still slower than RAM), when you need a file (be it a data file like a video, executables like Firefox, or libraries), the Linux kernel reads the file into RAM and keeps it there, so that the next time you need it, it is already in RAM and data access is much faster. The portions of RAM that accelerate disk read are called "cached memory." You will notice that they make a huge difference in terms of responsiveness. The Linux kernel automatically moves RAM reserved by programs--but not really used--into swap, so that it can serve the better purpose of extending cached memory.

__Optimizing Swap performance__
Because swap space uses a disk device, this can cause performance issues in any system that uses swap space significantly because the system itself may also be using the same disk device at the same time that it is required for swap operations. One way to reduce this problem is to have swap space on a different physical drive so that the competition for that resource is either reduced or eliminated.
Line 15: Line 37:

    * If you have n Mb of ram, you need between n and 2*n Mb of swap.

    * If you have a disk big enough, just put 2*n Mb swap.

== What is swap for? ==

    * As we'll see, there are basically four different purposes for swap :

        * Some programs really are memory-consuming.

        * Extra memory might come in handy.

        * Optimizing memory usage.

        * Hibernation (suspend-to-disk)

    * To begin with, let's say that computers have changed a lot since swap was first used :

        * At first, swap was needed to extend real memory capacity. You would use swap so that the available memory would be the addition of the ram space and the swap space.

        * Nowadays, ram are often big enough so that we could use the computer without any swap at all.

    * __Some programs really are memory-consuming :__

        * Sometimes, something big (like OpenOffice, Neverwinter Nights or some video editor) make the entire system need extra memory.

        * In these cases, swap will be used to make the system able to handle the extra load.

    * __Extra memory might come in handy :__

        * Unforeseeable events, might and will happen (a program going crazy, some action needing much more space than you thought, or any other unbelievable combination of events).

        * In these cases, swap will give you an extra delay to figure out what happens or to finish something.

    * __Swap can optimize memory usage :__

        * Hard drives are considerably slower than RAM. So when you need a file (be it a data file, like this video you're watching again and again, executables, like Firefox, or libraries), Linux reads the file into RAM and keeps it there so than the next time you need it again, it's already in RAM and data access is much faster (thousands of times faster). We call these portions of RAM that accelerate disk read "cached memory." They make a __huge__ difference in terms of responsiveness.

        * Linux automagically moves RAM reserved by programs but not really used in swap so that this ram can serve the better purpose of having more cached memory.

    * __Hibernation needs swap__

        * The hibernation feature (suspend-to-disk) writes out the contents of the memory to the swap partition before turning off the machine. Therefore, your swap partition should be at least as big as your RAM size. The hibernation implementation currently used in Ubuntu, ''swsusp'', needs a swap or suspend partition, and can not use a swap file on an active file system.
For less than 1GB of physical memory (RAM), it's highly recommended that the swap space should, as a base minimum, be equal to the amount of RAM. Also, it's recommended that the swap space is maximum twice the amount of RAM depending upon the amount of hard disk space available for the system because of diminishing returns.

For more modern systems (>1GB), your swap space should be at a minimum be equal to your physical memory (RAM) size "if you use hibernation", otherwise you need a minimum of round(sqrt(RAM)) and a maximum of twice the amount of RAM. The only downside to having more swap space than you will actually use, is the disk space you will be reserving for it.

The "diminishing returns" means that if you need more swap space than twice your RAM size, you'd better add more RAM as Hard Disk Drive (HDD) access is about 10³ slower then RAM access, so something that would take 1 second, suddenly takes more then 15 minutes! And still more than a minute on a fast Solid State Drive (SSD)...

=== Example Scenarios ===
(last 3 columns denote swap space)
{{{
 RAM No hibernation With Hibernation Maximum
      256MB 256MB 512MB 512MB
      512MB 512MB 1024MB 1024MB
     1024MB 1024MB 2048MB 2048MB

        RAM No hibernation With Hibernation Maximum
        1GB 1GB 2GB 2GB
        2GB 1GB 3GB 4GB
        3GB 2GB 5GB 6GB
        4GB 2GB 6GB 8GB
        5GB 2GB 7GB 10GB
        6GB 2GB 8GB 12GB
        8GB 3GB 11GB 16GB
       12GB 3GB 15GB 24GB
       16GB 4GB 20GB 32GB
       24GB 5GB 29GB 48GB
       32GB 6GB 38GB 64GB
       64GB 8GB 72GB 128GB
      128GB 11GB 139GB 256GB
      256GB 16GB 272GB 512GB
      512GB 23GB 535GB 1TB
        1TB 32GB 1056GB 2TB
        2TB 46GB 2094GB 4TB
        4TB 64GB 4160GB 8TB
        8TB 91GB 8283GB 16TB

}}}
== How do I add more swap? ==
<<Anchor(addswap)>> Swap is generally associated with a swap partition, perhaps because the user is prompted to create a swap partition at the time of installation. In fact, any file can be used as a swapping device, be it a partition or a conventional file. Swap can be added by increasing the size of the swap partition or by adding a swap file. Keep in mind that when creating a swap file that it may not necessarily be using contiguous disk blocks (as a swap partition will), and this could have a negative impact on performance as disk access times may be longer, and the more your system uses swap, the worse it will be. The Linux kernel also accesses swap disk block IO directly bypassing all caching, metadata and filesystem code, so a swap file should have no ill effect on the stability of your base filesystem. Since kernel 2.6.29 the swap system has automatically supported TRIM capable devices like SSDs.

The advantages of a swap file are many, but it is problematic for using the default `swsusp` hibernation method for powerless sleep. The best solution for maintaining hibernate capability after adding RAM is to increase the size of the swap partition.

== How do I add or modify a swap partition? ==

=== Process to Increase Size of Swap Partition and use it for Hibernation ===

 * Creating the swap partition
 * Activating the swap partition
 * Making the new swap partition work for hibernate (optional)

==== Creating the swap partition ====

 1. Boot to Ubuntu install CD and choose the option to run Ubuntu now
 2. Go to system -> GParted Partition Editor
 3. Delete the swap partition and, if there is nothing else in it, the extended partition that holds it. (If by some miracle you're able to resize your swap partition from here, I imagine your life will be a lot easier than mine.)
 4. Decrease the size of your primary partition by the amount you want your new swap to be (I made mine 2x RAM + 500MB just to be safe). The easiest way to do this is to fill in the amount of space you want swap to be in the "free space following" field
 5. In the free space that has now been created, choose new, type linux-swap and you can name the partition "swap" if you like
 6. Hit the *Apply* button (should be a check mark) to write the changes to disk
 7. When done, reboot back into Ubuntu

==== Activating the swap partition ====

(If your swap is on your primary hard drive, you don't need to do anything here.) Now you need to find what partition your swap is on and what its UUID is. UUID?! you say? Well that's the Universally Unique IDentifier for the partition so you can reference it even if it's on a different mount point from boot-to-boot due to adding disks, etc.

 1. Pull up a terminal and run `gksu gparted &` and enter your root password. The & lets this process run while still giving you access to the command line.
 2. Right-click on your swap partition and choose *Information*. You should see the **Path** and **UUID** listed there. Keep this open for further reference.
 3. Run `gksu gedit /etc/fstab &` and look for the line that has *swap* in it. It should be the third column, separated by spaces or tabs. You can either use the path or the UUID to tell Linux where to find your swap partition. I recommend UUID because it'll stay constant even if you move the partition around or the disk somehow becomes sdb instead of sda or something like that. Make the appropriate edits and save the file. Your line should look something like this if you used UUID (with your UUID instead, of course):
     * `UUID=41e86209-3802-424b-9a9d-d7683142dab7 none swap sw 0 0`
     * or this if you used path: `/dev/sda2 none swap sw 0 0`
 4. Save the file.
 5. Enable the new swap partition with this command.{{{
sudo swapon --all
}}}OR{{{
$ sudo swapon --all --verbose
swapon on /dev/sda2
swapon: /dev/sda2: found swap signature: version 1, page-size 4, same byte order
swapon: /dev/sda2: pagesize=4096, swapsize=2147483648, devsize=2147483648
}}}
 6. Confirm that the swap partition exists.{{{
$ cat /proc/swaps
Filename Type Size Used Priority
/dev/sda2 partition 2097148 0 -1
}}}
 6. Reboot to make sure the new swap gets activated properly at startup

==== Making the swap partition work for hibernate (optional) ====

''''INFO: This will not work for 12.04, resume from hibernate work differently in 12.04.''''

 1. Pull up a Terminal again and run `cat /proc/swaps` and hopefully you see the path to your swap partition listed there. If not chances are something went wrong in the steps above. Here's my output:
{{{
Filename Type Size Used Priority
/dev/sda2 partition 2676732 73380 -1

}}}
 2. `gksu gedit /etc/default/grub &` to pull up the boot loader configuration
 3. Look for the line `GRUB_CMDLINE_LINUX=""` and make sure it looks like this (using your UUID of course) `GRUB_CMDLINE_LINUX="resume=UUID=41e86209-3802-424b-9a9d-d7683142dab7"` and save the file
 4. `sudo update-grub` and wait for it to finish
 5. `gksu gedit /etc/initramfs-tools/conf.d/resume &` and make sure its contents are `resume=UUID=41e86209-3802-424b-9a9d-d7683142dab7` (with your UUID of course in place of mine). Save the file!
 6. `sudo update-initramfs -u`
 7. Reboot!

Now you should be able to hibernate and resume!

== How do I add a swap file? ==

''Note: btrfs does not support swap files at the moment. See
[[http://manpages.ubuntu.com/manpages/zesty/en/man8/swapon.8.html#contenttoc4|man swapon]].
and [[https://btrfs.wiki.kernel.org/index.php/FAQ#Does_btrfs_support_swap_files.3F|btrfs Faq]]''

=== Create the Swap File: ===

We will create a 1 GiB file (`/mnt/1GiB.swap`) to use as swap:
{{{
sudo dd if=/dev/zero of=/mnt/1GiB.swap bs=1024 count=1048576
}}}

We need to set the swap file permissions to `600` to prevent other users from being able to read potentially sensitive information from the swap file.
{{{
sudo chmod 600 /mnt/1GiB.swap
}}}

Format the file as swap:
{{{
sudo mkswap /mnt/1GiB.swap
}}}

=== Enable use of Swap File ===
{{{
sudo swapon /mnt/1GiB.swap
}}}
The additional swap is now available and verified with: `cat /proc/swaps`

=== Enable Swap File at Bootup ===

Add the swap file details to /etc/fstab so it will be available at bootup:
{{{
echo '/mnt/1GiB.swap swap swap defaults 0 0' | sudo tee -a /etc/fstab
}}}

=== Example of making a swap file ===

This is an example of making and using a swap file on a computer with no swap partition.
{{{
$ sudo fallocate -l 1g /mnt/1GiB.swap
$ sudo chmod 600 /mnt/1GiB.swap
$ sudo mkswap /mnt/1GiB.swap
Setting up swapspace version 1, size = 1048576 kB
$ sudo swapon /mnt/1GiB.swap
$ cat /proc/swaps
Filename Type Size Used Priority
/home/swapfile file 1048576 1048576 -1
$ echo '/mnt/4GiB.swap swap swap defaults 0 0' | sudo tee -a /etc/fstab
$ reboot
$ free -h
              total used free shared buff/cache available
Mem: 15G 9.3G 454M 4.0G 5.8G 1.9G
Swap: 1.0G 1.0G 0B
}}}

=== Disable and Remove a Swap File ===

Disable the swap file from the running system and the delete it:
{{{
sudo swapoff /mnt/1Gib.swap
sudo rm /mnt/1Gib.swap
}}}

Remove the swap file details from `fstab`:
{{{
gksudo gedit /etc/fstab
}}}

Removing the swap file line
{{{
/mnt/1GiB.swap swap swap defaults 0 0
}}}


== What is swappiness and how do I change it? ==
The swappiness parameter controls the tendency of the kernel to move processes out of physical memory and onto the swap disk. Because disks are much slower than RAM, this can lead to slower response times for system and applications if processes are too aggressively moved out of memory.
 * swappiness can have a value of between 0 and 100
 * swappiness=0 tells the kernel to avoid swapping processes out of physical memory for as long as possible
 * swappiness=100 tells the kernel to aggressively swap processes out of physical memory and move them to swap cache

The default setting in Ubuntu is swappiness=60. Reducing the default value of swappiness will probably improve overall performance for a typical Ubuntu desktop installation. A value of swappiness=10 is recommended, but feel free to experiment. '''Note''': Ubuntu server installations have different performance requirements to desktop systems, and the default value of 60 is likely more suitable.

__To check the swappiness value__
{{{
cat /proc/sys/vm/swappiness
}}}

__To change the swappiness value__
A temporary change (lost on reboot) with a swappiness value of 10 can be made with
{{{
sudo sysctl vm.swappiness=10
}}}

To make a change permanent, edit the configuration file with your favorite editor:
{{{
gksudo gedit /etc/sysctl.conf
}}}

Search for ''vm.swappiness'' and change its value as desired. If ''vm.swappiness'' does not exist, add it to the end of the file like so:
{{{
vm.swappiness=10
}}}

Save the file and reboot.

== What is the priority of swap containers? ==
The Linux kernel assigns priorities to all swap containers. To see the priorities that the Linux Kernel assigns to all the swap containers use this command.
{{{
cat /proc/swaps
}}}
Priorities can be changed by using the swapon command or defined in /etc/fstab. Consult the manual page of swapon for more info
{{{
man swapon
}}}
Line 61: Line 257:

    * '''__Definitely no__'''.

    * If you need more swap, just read the answer to "How do I add more swap ?".

== How do I add more swap? ==

    * Usually, people associate swap with a swap partition, maybe because they've been proposed to create a swap partition on install. In fact any file can be used as a swapping device, be it a partition or a conventional file.

    * With the 2.6 kernel, "a swap file is just as fast as a swap partition."([http://en.wikipedia.org/wiki/Paging#Swapping_in_Linux Wikipedia:Paging], [http://lkml.org/lkml/2006/5/29/3 LKML]). If you're considering responsiveness, my advice: add more RAM. Swapping to a partition or a file won't change anything.

    * We will add more swap by adding a swap file.

    * __Adding more swap is a four-step process :__

        * a- Creating a file the size you want.

        * b- Formatting that file to create a swapping device.

        * c- Adding the swap to the running system.

        * d- Making the change permanent.

    * __We will consider (as an example) a 512 Mb swap need.__

    * __a- Creating a file the size you want :__

        * We will create a /mnt/512Mb.swap swap file.{{{
sudo dd if=/dev/zero of=/mnt/512Mb.swap bs=1M count=512
}}}

            * What is important here is '''count=512''', which means we want our file to contain 512 blocks of '''bs=1M''', which means block size = 1 MegaBytes.

    * __b- Formatting that file to create a swapping device :__{{{
sudo mkswap /mnt/512Mb.swap
}}}

    * __c- Adding the swap to the running system :__{{{
sudo swapon /mnt/512Mb.swap
}}}

        * You can see with "'''cat /proc/meminfo'''" that your additionnal swap is now available.

    * __d- Making the change permanent :__

        * edit your /etc/fstab: {{{
sudo gedit /etc/fstab
}}}

        * and add this line at the end of the file: {{{
/mnt/512Mb.swap none swap sw 0 0
}}}

        * save and reboot
== Troubleshooting ==
'''Note:'''this regards mainly swap on hard disk partitions, but it could help you anyway. Also replace /dev/hda8 with your configuration.

__'''Help!'''__ The swap is not being used! When I issue the free command, it shows something like this:
Definitely not. With the 2.6 kernel, "a swap file is just as fast as a swap partition." ([[http://en.wikipedia.org/wiki/Paging#Linux|Wikipedia:Paging]], [[http://lkml.org/lkml/2006/5/29/3|LKML]]).

== Why is my swap not being used? ==
My swap is not being used! When I issue the free command, it shows something like this:
Line 128: Line 270:
    * 1- First try, if it is because the system cannot use swap or because it just does not need it. Start many memory consuming applications (e.g. Gimp, web browsers, OpenOffice etc) and then issue the free command again. Is swap being used now?

    * 2- See if there is a swap partition at all: {{{
sudo fdisk -l
}}}

you should be able to see something like this in the output {{{
/dev/hda8 4787 4870 674698+ 82 Linux swap / Solaris
}}}

If not, you either need to create a swapfile (see above as to how to do it) or create a swap partition. In order to do that, you can for example

    * boot from your Ubuntu install CD (rather usin the expert bot option), create a swap partiton out of the free space on your hardddisk and then interrupt your installation

    * or just use cfdisk (lookup its man page for more info).

However, let us just suppose you have a swap partition.
There are several ways of enabling it.

    * 2.1- First make sure you have something like this {{{
/dev/hda8 none swap sw 0 0
}}}

in /etc/fstab. It enables swap on boot.

    * 2.2- Then try to disable all swap, recreate it and then enable it again {{{
swapoff -a
/sbin/mkswap /dev/hda8
'''Note:''' This regards mainly swap on hard disk partitions, but it could help anyway. In these examples /dev/hda8 is considered as swap.

=== Swap may not be needed ===
Start many memory consuming applications (e.g. Gimp, web browsers, LibreOffice etc) and then issue the free command again. Is swap being used now?

Ubuntu Desktop uses Swap to Hibernate (PC off, no power needed, program states saved). If Hibernation is important to you, have more swap space than ram + swap overflow.

=== Is there a swap partition at all? ===
Use this command to see all partitions
{{{
sudo parted --list
}}}

You should be able to see something like this in the output
{{{
 5 236GB 256GB 20.0GB linux-swap(v1)
}}}

If not, you either need to [[#addswap|create a swapfile]] or create a swap partition. To create a swap partition you can
 * boot from your Ubuntu install CD, create a swap partition out of the free space on your hard disk and then interrupt your installation.
 * use [[http://en.wikipedia.org/wiki/Cfdisk|Cfdisk]].

=== Enabling a swap partition ===
In case you do have a swap partition, there are several ways of enabling it.
 * Use the following command
 {{{
cat /etc/fstab
}}}

 * Ensure that there is a line link below. This enables swap on boot.
 {{{
/dev/sdb5 none swap sw 0 0
}}}

 * Then disable all swap, recreate it, then re-enable it with the following commands.
 {{{
sudo swapoff -a
sudo /sbin/mkswap /dev/sdb5
sudo swapon -a
}}}


== Empty Swap ==

Even if you have lots of RAM and even if you have a low swappiness value, it is possible that your computer swaps.
This can hurt the multitasking performance of your desktop system.

You can use the following script to get the swap manually back into RAM:

 * Place the script e.g. /usr/local/sbin:
 {{{
gksudo gedit /usr/local/sbin/swap2ram.sh
}}}

 * Copy-paste the script into the file:

/* NOTE: The first "#!" is MoinMoin synxtax for comments, so we must double the line */
/* http://moinmo.in/HelpOnMoinWikiSyntax#Comments */

 {{{
#!/bin/sh
#!/bin/sh

mem=$(LC_ALL=C free | awk '/Mem:/ {print $4}')
swap=$(LC_ALL=C free | awk '/Swap:/ {print $3}')

if [ $mem -lt $swap ]; then
    echo "ERROR: not enough RAM to write swap back, nothing done" >&2
    exit 1
fi

swapoff -a &&
Line 159: Line 345:
   * 2.3 Some people also reported this to help:
      * 1) cfdisk : erase the old Swap partition and recreate a new one
      * 2) reboot (mandatory)
      * 3) mkswap /dev/hda8
      * 4) swapon -a


== Example of making a swap file ==
This is an example of making and using a swap file on a computer with no swap partition.
{{{
user@computer:~$ sudo dd if=/dev/zero of=/mnt/512Mb.swap bs=1M count=512
Password:
512+0 records in
512+0 records out
536870912 bytes (537 MB) copied, 35.3802 seconds, 15.2 MB/s
user@computer:~$ sudo mkswap /mnt/512Mb.swap
Setting up swapspace version 1, size = 536866 kB
no label, UUID=dd6a01c8-93f0-41e0-9b7a-306956d8821b
user@computer:~$ sudo swapon /mnt/512Mb.swap
user@computer:~$ cat /proc/meminfo
MemTotal: 499496 kB
MemFree: 9156 kB
Buffers: 4748 kB
Cached: 233140 kB
SwapCached: 724 kB
Active: 254432 kB
Inactive: 157920 kB
HighTotal: 0 kB
HighFree: 0 kB
LowTotal: 499496 kB
LowFree: 9156 kB
SwapTotal: 524280 kB
SwapFree: 523556 kB
Dirty: 128 kB
Writeback: 0 kB
Mapped: 243420 kB
Slab: 20672 kB
CommitLimit: 774028 kB
Committed_AS: 648680 kB
PageTables: 2224 kB
VmallocTotal: 524280 kB
VmallocUsed: 5708 kB
VmallocChunk: 518176 kB
user@computer:~$ gksudo gedit /etc/fstab
user@computer:~$ free
             total used free shared buffers cached
Mem: 499496 479488 20008 0 8256 215892
-/+ buffers/cache: 255340 244156
Swap: 524280 3856 520424
#####Then after running a few more programs...
user@computer:~$ free
             total used free shared buffers cached
Mem: 499496 492768 6728 0 1240 142336
-/+ buffers/cache: 349192 150304
Swap: 524280 53384 470896

#####Next reboot to make sure it will work consistently.
user@computer:~$ free
             total used free shared buffers cached
Mem: 499496 493136 6360 0 7528 174700
-/+ buffers/cache: 310908 188588
Swap: 524280 17148 507132
#####I followed the instructions to the letter, and it worked :-)
}}}
== Performance (advanced) ==

There is a parameter which defines the attitude of kernel to swap.
This parameter is controlling how soon the kernel begin to fill the swap.

This parameter is called "swappiness" and has a value in the 0-100 range.
swappiness=0 means it will use swap as last as possible.
swappiness=100 means it will begin to swap very early.

Currently the default value is 60, but lowering to 10 or 5 would cause
the machine to be better responsive.

=== How to check the swappiness value ===
{{{
$ cat /proc/sys/vm/swappiness
}}}

=== How to change the swappiness value ===

    * edit the /etc/sysctl.conf:{{{
$ sudo gedit /etc/sysctl.conf
}}}

    * and add this line in the end of the file (change 10 to the value you want):{{{
vm.swappiness=10
}}}

    * save and reboot

== Advanced Topics ==
SwapSpace

== Author ==

    * Yannick Le Saint (kyncani) <y.lesaint@gmail.com>
    * Tomas Hnyk <thnyk@seznam.cz> - troubleshooting section
    * Max Randor <max (DOT) randor <at>googlemail.com>

== About the document ==

    * '''__TODO :__'''

        * Determine the more standard emplacement for swap files (FHS).

        * Add power suspend considerations.

    * 15/05/2005, 01:42

        * First version.

CategoryDocumentation CategoryCleanup
 * Save and close gedit

 * Make the script executable:

 {{{
sudo chmod +x /usr/local/sbin/swap2ram.sh
}}}

 * Execute:

 {{{
sudo /usr/local/sbin/swap2ram.sh
}}}


----
CategoryFaq

Introduction

  • This FAQ is aimed at Linux novices.

  • People always wonder how much swap they should create at install time, or after installing they may think, "have I made a large enough swap? Should I reinstall with a larger swap?"
  • This FAQ will tell you how much swap you need and how to add more swap after installation.
  • You will be given very simple answers (to prevent losing too much time reading this FAQ) and some explanations that may help you form your own opinion.

What is swap?

Swap space is the area on a hard disk. It is a part of your machine's Virtual Memory, which is a combination of accessible physical memory (RAM) and the swap space. Swap holds memory pages that are temporarily inactive. Swap space is used when your operating system decides that it needs physical memory for active processes and the amount of available (unused) physical memory is insufficient. When this happens, inactive pages from the physical memory are then moved into the swap space, freeing up that physical memory for other uses. Note that the access time for swap is slower, depending on the speed of the hard drive. Do not consider it to be a complete replacement for the physical memory. Swap space can be a dedicated swap partition (recommended), a swap file, or a combination of swap partitions and swap file(s).

Why do I need swap?

Memory consuming programs Sometimes, a large program (like LibreOffice, Neverwinter Nights, or a video editor) make the entire system need extra memory. A significant number of the pages used by these large programs during its startup may only be used for initialization and then never used again. The system can swap out those pages and free the memory for other programs or even for the disk cache. In these cases, swap will be used to help the system handle any extra load.

Hibernation (suspend-to-disk) The hibernation feature (suspend-to-disk) writes out the contents of RAM to the swap partition before turning off the machine. Therefore, your swap partition should be at least as big as your RAM size. Although the latest versions of Ubuntu don't support hibernation OOTB you may configure your system to allow Hibernation. In both alternatives (PM-UTILS or SYSTEMD) you may use a partition or a file.

Unforeseeable Circumstances Unforeseeable events can and will happen (a program going crazy, some action needing much more space than you thought, or any other unpredictable combination of events). In these cases, swap can give you an extra delay to figure out what happened, or to finish what you are working on.

Optimizing memory usage Since mechanical hard drives are considerably slower than RAM (SSD - Solid State Drive - storage is not as slow as physical drives, but still slower than RAM), when you need a file (be it a data file like a video, executables like Firefox, or libraries), the Linux kernel reads the file into RAM and keeps it there, so that the next time you need it, it is already in RAM and data access is much faster. The portions of RAM that accelerate disk read are called "cached memory." You will notice that they make a huge difference in terms of responsiveness. The Linux kernel automatically moves RAM reserved by programs--but not really used--into swap, so that it can serve the better purpose of extending cached memory.

Optimizing Swap performance Because swap space uses a disk device, this can cause performance issues in any system that uses swap space significantly because the system itself may also be using the same disk device at the same time that it is required for swap operations. One way to reduce this problem is to have swap space on a different physical drive so that the competition for that resource is either reduced or eliminated.

How much swap do I need?

For less than 1GB of physical memory (RAM), it's highly recommended that the swap space should, as a base minimum, be equal to the amount of RAM. Also, it's recommended that the swap space is maximum twice the amount of RAM depending upon the amount of hard disk space available for the system because of diminishing returns.

For more modern systems (>1GB), your swap space should be at a minimum be equal to your physical memory (RAM) size "if you use hibernation", otherwise you need a minimum of round(sqrt(RAM)) and a maximum of twice the amount of RAM. The only downside to having more swap space than you will actually use, is the disk space you will be reserving for it.

The "diminishing returns" means that if you need more swap space than twice your RAM size, you'd better add more RAM as Hard Disk Drive (HDD) access is about 10³ slower then RAM access, so something that would take 1 second, suddenly takes more then 15 minutes! And still more than a minute on a fast Solid State Drive (SSD)...

Example Scenarios

(last 3 columns denote swap space)

        RAM   No hibernation    With Hibernation  Maximum
      256MB            256MB               512MB    512MB 
      512MB            512MB              1024MB   1024MB
     1024MB           1024MB              2048MB   2048MB

        RAM   No hibernation    With Hibernation  Maximum
        1GB              1GB                 2GB      2GB
        2GB              1GB                 3GB      4GB
        3GB              2GB                 5GB      6GB
        4GB              2GB                 6GB      8GB
        5GB              2GB                 7GB     10GB
        6GB              2GB                 8GB     12GB
        8GB              3GB                11GB     16GB
       12GB              3GB                15GB     24GB
       16GB              4GB                20GB     32GB
       24GB              5GB                29GB     48GB
       32GB              6GB                38GB     64GB
       64GB              8GB                72GB    128GB
      128GB             11GB               139GB    256GB
      256GB             16GB               272GB    512GB
      512GB             23GB               535GB      1TB
        1TB             32GB              1056GB      2TB
        2TB             46GB              2094GB      4TB
        4TB             64GB              4160GB      8TB
        8TB             91GB              8283GB     16TB

How do I add more swap?

Swap is generally associated with a swap partition, perhaps because the user is prompted to create a swap partition at the time of installation. In fact, any file can be used as a swapping device, be it a partition or a conventional file. Swap can be added by increasing the size of the swap partition or by adding a swap file. Keep in mind that when creating a swap file that it may not necessarily be using contiguous disk blocks (as a swap partition will), and this could have a negative impact on performance as disk access times may be longer, and the more your system uses swap, the worse it will be. The Linux kernel also accesses swap disk block IO directly bypassing all caching, metadata and filesystem code, so a swap file should have no ill effect on the stability of your base filesystem. Since kernel 2.6.29 the swap system has automatically supported TRIM capable devices like SSDs.

The advantages of a swap file are many, but it is problematic for using the default swsusp hibernation method for powerless sleep. The best solution for maintaining hibernate capability after adding RAM is to increase the size of the swap partition.

How do I add or modify a swap partition?

Process to Increase Size of Swap Partition and use it for Hibernation

  • Creating the swap partition
  • Activating the swap partition
  • Making the new swap partition work for hibernate (optional)

Creating the swap partition

  1. Boot to Ubuntu install CD and choose the option to run Ubuntu now
  2. Go to system -> GParted Partition Editor

  3. Delete the swap partition and, if there is nothing else in it, the extended partition that holds it. (If by some miracle you're able to resize your swap partition from here, I imagine your life will be a lot easier than mine.)
  4. Decrease the size of your primary partition by the amount you want your new swap to be (I made mine 2x RAM + 500MB just to be safe). The easiest way to do this is to fill in the amount of space you want swap to be in the "free space following" field
  5. In the free space that has now been created, choose new, type linux-swap and you can name the partition "swap" if you like
  6. Hit the *Apply* button (should be a check mark) to write the changes to disk
  7. When done, reboot back into Ubuntu

Activating the swap partition

(If your swap is on your primary hard drive, you don't need to do anything here.) Now you need to find what partition your swap is on and what its UUID is. UUID?! you say? Well that's the Universally Unique IDentifier for the partition so you can reference it even if it's on a different mount point from boot-to-boot due to adding disks, etc.

  1. Pull up a terminal and run gksu gparted & and enter your root password. The & lets this process run while still giving you access to the command line.

  2. Right-click on your swap partition and choose *Information*. You should see the **Path** and **UUID** listed there. Keep this open for further reference.
  3. Run gksu gedit /etc/fstab & and look for the line that has *swap* in it. It should be the third column, separated by spaces or tabs. You can either use the path or the UUID to tell Linux where to find your swap partition. I recommend UUID because it'll stay constant even if you move the partition around or the disk somehow becomes sdb instead of sda or something like that. Make the appropriate edits and save the file. Your line should look something like this if you used UUID (with your UUID instead, of course):

    • UUID=41e86209-3802-424b-9a9d-d7683142dab7 none swap sw 0 0

    • or this if you used path: /dev/sda2 none swap sw 0 0

  4. Save the file.
  5. Enable the new swap partition with this command.

    sudo swapon --all

    OR

    $ sudo swapon --all --verbose
    swapon on /dev/sda2
    swapon: /dev/sda2: found swap signature: version 1, page-size 4, same byte order
    swapon: /dev/sda2: pagesize=4096, swapsize=2147483648, devsize=2147483648
  6. Confirm that the swap partition exists.

    $ cat /proc/swaps
    Filename                                Type            Size    Used    Priority
    /dev/sda2                               partition       2097148 0       -1
  7. Reboot to make sure the new swap gets activated properly at startup

Making the swap partition work for hibernate (optional)

'INFO: This will not work for 12.04, resume from hibernate work differently in 12.04.'

  1. Pull up a Terminal again and run cat /proc/swaps and hopefully you see the path to your swap partition listed there. If not chances are something went wrong in the steps above. Here's my output:

Filename                                Type            Size    Used    Priority
/dev/sda2                               partition       2676732 73380   -1
  1. gksu gedit /etc/default/grub & to pull up the boot loader configuration

  2. Look for the line GRUB_CMDLINE_LINUX="" and make sure it looks like this (using your UUID of course) GRUB_CMDLINE_LINUX="resume=UUID=41e86209-3802-424b-9a9d-d7683142dab7" and save the file

  3. sudo update-grub and wait for it to finish

  4. gksu gedit /etc/initramfs-tools/conf.d/resume & and make sure its contents are resume=UUID=41e86209-3802-424b-9a9d-d7683142dab7 (with your UUID of course in place of mine). Save the file!

  5. sudo update-initramfs -u

  6. Reboot!

Now you should be able to hibernate and resume!

How do I add a swap file?

Note: btrfs does not support swap files at the moment. See man swapon. and btrfs Faq

Create the Swap File:

We will create a 1 GiB file (/mnt/1GiB.swap) to use as swap:

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

We need to set the swap file permissions to 600 to prevent other users from being able to read potentially sensitive information from the swap file.

sudo chmod 600 /mnt/1GiB.swap

Format the file as swap:

sudo mkswap /mnt/1GiB.swap

Enable use of Swap File

sudo swapon /mnt/1GiB.swap

The additional swap is now available and verified with: cat /proc/swaps

Enable Swap File at Bootup

Add the swap file details to /etc/fstab so it will be available at bootup:

echo '/mnt/1GiB.swap swap swap defaults 0 0' | sudo tee -a /etc/fstab

Example of making a swap file

This is an example of making and using a swap file on a computer with no swap partition.

$ sudo fallocate -l 1g /mnt/1GiB.swap
$ sudo chmod 600 /mnt/1GiB.swap
$ sudo mkswap /mnt/1GiB.swap
Setting up swapspace version 1, size = 1048576 kB
$ sudo swapon /mnt/1GiB.swap
$ cat /proc/swaps 
Filename                                Type            Size    Used    Priority
/home/swapfile                          file            1048576 1048576 -1
$ echo '/mnt/4GiB.swap swap swap defaults 0 0' | sudo tee -a /etc/fstab
$ reboot
$ free -h
              total        used        free      shared  buff/cache   available
Mem:            15G        9.3G        454M        4.0G        5.8G        1.9G
Swap:          1.0G        1.0G          0B

Disable and Remove a Swap File

Disable the swap file from the running system and the delete it:

sudo swapoff /mnt/1Gib.swap 
sudo rm /mnt/1Gib.swap

Remove the swap file details from fstab:

gksudo gedit /etc/fstab

Removing the swap file line

/mnt/1GiB.swap swap swap defaults 0 0

What is swappiness and how do I change it?

The swappiness parameter controls the tendency of the kernel to move processes out of physical memory and onto the swap disk. Because disks are much slower than RAM, this can lead to slower response times for system and applications if processes are too aggressively moved out of memory.

  • swappiness can have a value of between 0 and 100
  • swappiness=0 tells the kernel to avoid swapping processes out of physical memory for as long as possible
  • swappiness=100 tells the kernel to aggressively swap processes out of physical memory and move them to swap cache

The default setting in Ubuntu is swappiness=60. Reducing the default value of swappiness will probably improve overall performance for a typical Ubuntu desktop installation. A value of swappiness=10 is recommended, but feel free to experiment. Note: Ubuntu server installations have different performance requirements to desktop systems, and the default value of 60 is likely more suitable.

To check the swappiness value

cat /proc/sys/vm/swappiness

To change the swappiness value A temporary change (lost on reboot) with a swappiness value of 10 can be made with

sudo sysctl vm.swappiness=10

To make a change permanent, edit the configuration file with your favorite editor:

gksudo gedit /etc/sysctl.conf

Search for vm.swappiness and change its value as desired. If vm.swappiness does not exist, add it to the end of the file like so:

vm.swappiness=10

Save the file and reboot.

What is the priority of swap containers?

The Linux kernel assigns priorities to all swap containers. To see the priorities that the Linux Kernel assigns to all the swap containers use this command.

cat /proc/swaps

Priorities can be changed by using the swapon command or defined in /etc/fstab. Consult the manual page of swapon for more info

man swapon

Should I reinstall with more swap?

Definitely not. With the 2.6 kernel, "a swap file is just as fast as a swap partition." (Wikipedia:Paging, LKML).

Why is my swap not being used?

My swap is not being used! When I issue the free command, it shows something like this:

tom@tom:~$ free
             total       used       free     shared    buffers     cached
Mem:        515980     448664      67316          0      17872     246348
-/+ buffers/cache:     184444     331536
Swap:       674688          0     674688

Note: This regards mainly swap on hard disk partitions, but it could help anyway. In these examples /dev/hda8 is considered as swap.

Swap may not be needed

Start many memory consuming applications (e.g. Gimp, web browsers, LibreOffice etc) and then issue the free command again. Is swap being used now?

Ubuntu Desktop uses Swap to Hibernate (PC off, no power needed, program states saved). If Hibernation is important to you, have more swap space than ram + swap overflow.

Is there a swap partition at all?

Use this command to see all partitions

sudo parted --list

You should be able to see something like this in the output

 5      236GB   256GB   20.0GB  linux-swap(v1)

If not, you either need to create a swapfile or create a swap partition. To create a swap partition you can

  • boot from your Ubuntu install CD, create a swap partition out of the free space on your hard disk and then interrupt your installation.
  • use Cfdisk.

Enabling a swap partition

In case you do have a swap partition, there are several ways of enabling it.

  • Use the following command
    cat /etc/fstab
  • Ensure that there is a line link below. This enables swap on boot.
    /dev/sdb5       none            swap    sw              0       0
  • Then disable all swap, recreate it, then re-enable it with the following commands.
    sudo swapoff -a
    sudo /sbin/mkswap /dev/sdb5
    sudo swapon -a

Empty Swap

Even if you have lots of RAM and even if you have a low swappiness value, it is possible that your computer swaps. This can hurt the multitasking performance of your desktop system.

You can use the following script to get the swap manually back into RAM:

  • Place the script e.g. /usr/local/sbin:
    gksudo gedit /usr/local/sbin/swap2ram.sh
  • Copy-paste the script into the file:

  • #!/bin/sh
    
    mem=$(LC_ALL=C free  | awk '/Mem:/ {print $4}')
    swap=$(LC_ALL=C free | awk '/Swap:/ {print $3}')
    
    if [ $mem -lt $swap ]; then
        echo "ERROR: not enough RAM to write swap back, nothing done" >&2
        exit 1
    fi
    
    swapoff -a &&
    swapon -a
  • Save and close gedit
  • Make the script executable:
    sudo chmod +x /usr/local/sbin/swap2ram.sh
  • Execute:
    sudo /usr/local/sbin/swap2ram.sh


CategoryFaq

SwapFaq (last edited 2022-07-27 19:13:47 by chick)