Merge branch 'vendor/GCC47'
[dragonfly.git] / sbin / swapon / swapon.8
1 .\" Copyright (c) 1980, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)swapon.8    8.1 (Berkeley) 6/5/93
29 .\" $FreeBSD: src/sbin/swapon/swapon.8,v 1.15.2.2 2001/12/14 15:17:56 ru Exp $
30 .\"
31 .Dd September 7, 2010
32 .Dt SWAPON 8
33 .Os
34 .Sh NAME
35 .Nm swapon , swapoff , swapctl
36 .Nd "specify devices for paging and swapping"
37 .Sh SYNOPSIS
38 .Nm swapon Fl aeiq | Ar
39 .Nm swapoff Fl aq | Ar
40 .Nm swapctl
41 .Op Fl AeghklmsU
42 .Oo
43 .Fl a Ar
44 |
45 .Fl d Ar
46 .Oc
47 .Sh DESCRIPTION
48 The
49 .Nm swapon , swapoff
50 and
51 .Nm swapctl
52 utilities are used to control swap devices in the system.
53 At boot time all swap entries in
54 .Pa /etc/fstab
55 are added automatically when the system goes multi-user.
56 Swap devices use a fixed interleave; the maximum number of devices
57 is specified by the kernel configuration option
58 .Dv NSWAPDEV ,
59 which is typically set to 4.
60 There is no priority mechanism.
61 .Pp
62 The
63 .Nm swapon
64 utility adds the specified swap devices to the system.
65 If the
66 .Fl a
67 option is used, all swap devices in
68 .Pa /etc/fstab
69 will be added, unless their
70 .Dq noauto
71 option is also set.
72 If the
73 .Fl q
74 option is used informational messages will not be
75 written to standard output when a swap device is added.
76 If the
77 .Fl e
78 option is used, the device will be trimmed if
79 it supports trim and the trim_enabled sysctl is on.
80 The
81 .Fl i
82 option asks user confirmation before adding a swap device.
83 .Pp
84 The
85 .Nm swapoff
86 utility removes the specified swap devices from the system.
87 If the
88 .Fl a
89 option is used, all swap devices in
90 .Pa /etc/fstab
91 will be removed, unless their
92 .Dq noauto
93 option is also set.
94 If the
95 .Fl q
96 option is used informational messages will not be
97 written to standard output when a swap device is removed.
98 Note that
99 .Nm swapoff
100 will fail and refuse to remove a swap device if there is insufficient
101 VM (memory + remaining swap devices) to run the system.
102 The
103 .Nm swapoff
104 utility
105 must move swapped pages out of the device being removed which could
106 lead to high system loads for a period of time, depending on how
107 much data has been swapped out to that device.
108 .Pp
109 The
110 .Nm swapctl
111 utility exists primarily for those familiar with other
112 .Bx Ns s
113 and may be
114 used to add, remove, or list swap devices.
115 Note that the
116 .Fl a
117 option is used differently in
118 .Nm swapctl
119 and indicates that a specific list of devices should be added.
120 The
121 .Fl d
122 option indicates that a specific list should be removed.
123 The
124 .Fl A
125 and
126 .Fl U
127 options to
128 .Nm swapctl
129 operate on all swap entries in
130 .Pa /etc/fstab
131 which do not have their
132 .Dq noauto
133 option set.
134 .Pp
135 Swap information can be generated using the
136 .Xr swapinfo 8
137 utility,
138 .Nm pstat
139 .Fl s ,
140 or
141 .Nm swapctl
142 .Fl l .
143 The
144 .Nm swapctl
145 utility has the following options for listing swap:
146 .Bl -tag -width indent
147 .It Fl h
148 Output values in human-readable form.
149 .It Fl g
150 Output values in gigabytes.
151 .It Fl k
152 Output values in kilobytes.
153 .It Fl m
154 Output values in megabytes.
155 .It Fl l
156 List the devices making up system swap.
157 .It Fl s
158 Print a summary line for system swap.
159 .It Fl e
160 Attempts to Trim the device if -[Aa] is used.
161 .It Fl i
162 Asks user confirmation when -a is used.
163 .Pp
164 The
165 .Ev BLOCKSIZE
166 environment variable is used if not specifically
167 overridden.
168 1K blocks are used by default.
169 .El
170 .Sh FILES
171 .Bl -tag -width ".Pa /dev/{ad,da}?s?b" -compact
172 .It Pa /dev/{ad,da}?s?b
173 standard paging devices
174 .It Pa /dev/vn?s?b
175 vnode disk paging device
176 .It Pa /etc/fstab
177 ASCII filesystem description table
178 .It Pa /etc/vntab
179 ASCII vnode file table
180 .El
181 .Sh DIAGNOSTICS
182 These utilities may fail for the reasons described in
183 .Xr swapon 2 .
184 .Sh SEE ALSO
185 .Xr swapon 2 ,
186 .Xr fstab 5 ,
187 .Xr init 8 ,
188 .Xr pstat 8 ,
189 .Xr rc 8 ,
190 .Xr vnconfig 8
191 .Sh HISTORY
192 The
193 .Nm swapon
194 utility appeared in
195 .Bx 4.0 .
196 The
197 .Nm swapoff
198 and
199 .Nm swapctl
200 utilities appeared in
201 .Fx 5.1
202 and were later ported to
203 .Dx 2.7 .