- trixie 2.41-5
- testing 2.41.3-4
- unstable 2.41.3-4
- experimental 2.42~rc1-1
| SWAPON(8) | System Administration | SWAPON(8) |
NAME¶
swapon, swapoff - enable/disable devices and files for paging and swapping
SYNOPSIS¶
swapon [options] [specialfile...]
swapoff [-va] [specialfile...]
DESCRIPTION¶
swapon is used to specify devices on which paging and swapping are to take place.
The device or file used is given by the specialfile parameter. It may be of the form -L label or -U uuid to indicate a device by label or uuid.
Calls to swapon normally occur in the system boot scripts making all swap devices available, so that the paging and swapping activity is interleaved across several devices and files.
swapoff disables swapping on the specified devices and files. When the -a flag is given, swapping is disabled on all known swap devices and files (as found in /proc/swaps or /etc/fstab).
OPTIONS¶
-a, --all
-T, --fstab path
-d, --discard[=policy]
--discard=once
--discard=pages
If no policy is selected, the default behavior is to enable both discard types. The /etc/fstab mount options discard, discard=once, or discard=pages may also be used to enable discard flags.
-e, --ifexists
-f, --fixpgsz
-L label
-o, --options opts
swapon -o pri=1,discard=pages,nofail /dev/sda2
The opts string is evaluated last and overrides all other command line options.
-p, --priority priority
-s, --summary
--show[=column...]
--output-all
--annotate[=when]
--noheadings
--raw
--bytes
-U uuid
-v, --verbose
-h, --help
-V, --version
FSTAB CONFIGURATION¶
The command swapon --all reads configuration from /etc/fstab (or from a file specified by the --fstab command line option). Only fstab entries with the filesystem type (3rd field) set to "swap" are relevant.
The option --options accepts values in the same form as can be specified in the fourth field in fstab.
The first field (source)¶
Specify the swap source. If the source is a regular file, it is addressed by an absolute path.
If the swap is a block device, it can be addressed by device path, swap area tags LABEL= or UUID= (see mkswap(8) for more details), or by partition tags like PARTLABEL= or PARTUUID=.
The second field (target)¶
Unused by swapon, the recommended convention is to use "none".
The third field (type)¶
Requires "swap" as the filesystem type.
The fourth field (options)¶
It is formatted as a comma-separated list of options. All unknown options are silently ignored. If options are unnecessary, the recommended convention is to use "defaults". The options specified in fstab extend or overwrite settings specified on the swapon command line.
Supported swap options:
noauto
nofail
discard[=policy]
pri=priority
The fifth field¶
Unused by swapon, the recommended convention is to keep it empty.
The sixth field¶
Unused by swapon, the recommended convention is to keep it empty.
EXIT STATUS¶
swapoff has the following exit status values since v2.36:
0
2
4
8
16
32
64
The command swapoff --all returns 0 (all succeeded), 32 (all failed), or 64 (some failed, some succeeded).
+ The old versions before v2.36 has no documented exit status, 0 means success in all versions.
ENVIRONMENT¶
LIBMOUNT_DEBUG=all
LIBBLKID_DEBUG=all
FILES¶
/dev/sd??
/etc/fstab
NOTES¶
Files with holes¶
The swap file implementation in the kernel expects to be able to write to the file directly, without the assistance of the filesystem. This is a problem on files with holes or on copy-on-write files on filesystems like Btrfs.
Commands like cp(1) or truncate(1) create files with holes. These files will be rejected by swapon.
Preallocated files created by fallocate(1) may be interpreted as files with holes too depending of the filesystem. Preallocated swap files are supported on XFS since Linux 4.18.
The most portable solution to create a swap file is to use dd(1) and /dev/zero.
Btrfs¶
Swap files on Btrfs are supported since Linux 5.0 on files with nocow attribute. See the btrfs(5) manual page for more details.
Since version 2.41, the command mkswap --file can create a new swap file with the nocow attribute.
NFS¶
Swap over NFS may not work.
Suspend¶
swapon automatically detects and rewrites a swap space signature with old software suspend data (e.g., S1SUSPEND, S2SUSPEND, ...). The problem is that if we don’t do it, then we get data corruption the next time an attempt at unsuspending is made.
HISTORY¶
The swapon command appeared in 4.0BSD.
SEE ALSO¶
swapoff(2), swapon(2), fstab(5), init(8), fallocate(1), mkswap(8), mount(8), rc(8)
REPORTING BUGS¶
For bug reports, use the issue tracker <https://github.com/util-linux/util-linux/issues>.
AVAILABILITY¶
The swapon command is part of the util-linux package which can be downloaded from Linux Kernel Archive <https://www.kernel.org/pub/linux/utils/util-linux/>.
| 2026-02-18 | util-linux 2.42-rc1 |