1SYSTEMD.MOUNT(5)                 systemd.mount                SYSTEMD.MOUNT(5)
2
3
4

NAME

6       systemd.mount - Mount unit configuration
7

SYNOPSIS

9       mount.mount
10

DESCRIPTION

12       A unit configuration file whose name ends in ".mount" encodes
13       information about a file system mount point controlled and supervised
14       by systemd.
15
16       This man page lists the configuration options specific to this unit
17       type. See systemd.unit(5) for the common options of all unit
18       configuration files. The common configuration items are configured in
19       the generic "[Unit]" and "[Install]" sections. The mount specific
20       configuration options are configured in the "[Mount]" section.
21
22       Additional options are listed in systemd.exec(5), which define the
23       execution environment the mount(8) program is executed in, and in
24       systemd.kill(5), which define the way the processes are terminated, and
25       in systemd.resource-control(5), which configure resource control
26       settings for the processes of the service.
27
28       Note that the options User= and Group= are not useful for mount units.
29       systemd passes two parameters to mount(8); the values of What= and
30       Where=. When invoked in this way, mount(8) does not read any options
31       from /etc/fstab, and must be run as UID 0.
32
33       Mount units must be named after the mount point directories they
34       control. Example: the mount point /home/lennart must be configured in a
35       unit file home-lennart.mount. For details about the escaping logic used
36       to convert a file system path to a unit name, see systemd.unit(5). Note
37       that mount units cannot be templated, nor is possible to add multiple
38       names to a mount unit by creating additional symlinks to it.
39
40       Optionally, a mount unit may be accompanied by an automount unit, to
41       allow on-demand or parallelized mounting. See systemd.automount(5).
42
43       Mount points created at runtime (independently of unit files or
44       /etc/fstab) will be monitored by systemd and appear like any other
45       mount unit in systemd. See /proc/self/mountinfo description in proc(5).
46
47       Some file systems have special semantics as API file systems for
48       kernel-to-userspace and userspace-to-userspace interfaces. Some of them
49       may not be changed via mount units, and cannot be disabled. For a
50       longer discussion see API File Systems[1].
51
52       The systemd-mount(1) command allows creating .mount and .automount
53       units dynamically and transiently from the command line.
54

AUTOMATIC DEPENDENCIES

56   Implicit Dependencies
57       The following dependencies are implicitly added:
58
59       ·   If a mount unit is beneath another mount unit in the file system
60           hierarchy, both a requirement dependency and an ordering dependency
61           between both units are created automatically.
62
63       ·   Block device backed file systems automatically gain BindsTo= and
64           After= type dependencies on the device unit encapsulating the block
65           device (see below).
66
67       ·   If traditional file system quota is enabled for a mount unit,
68           automatic Wants= and Before= dependencies on
69           systemd-quotacheck.service and quotaon.service are added.
70
71       ·   Additional implicit dependencies may be added as result of
72           execution and resource control parameters as documented in
73           systemd.exec(5) and systemd.resource-control(5).
74
75   Default Dependencies
76       The following dependencies are added unless DefaultDependencies=no is
77       set:
78
79       ·   All mount units acquire automatic Before= and Conflicts= on
80           umount.target in order to be stopped during shutdown.
81
82       ·   Mount units referring to local file systems automatically gain an
83           After= dependency on local-fs-pre.target, and a Before= dependency
84           on local-fs.target unless nofail mount option is set.
85
86       ·   Network mount units automatically acquire After= dependencies on
87           remote-fs-pre.target, network.target and network-online.target, and
88           gain a Before= dependency on remote-fs.target unless nofail mount
89           option is set. Towards the latter a Wants= unit is added as well.
90
91       Mount units referring to local and network file systems are
92       distinguished by their file system type specification. In some cases
93       this is not sufficient (for example network block device based mounts,
94       such as iSCSI), in which case _netdev may be added to the mount option
95       string of the unit, which forces systemd to consider the mount unit a
96       network mount.
97

FSTAB

99       Mount units may either be configured via unit files, or via /etc/fstab
100       (see fstab(5) for details). Mounts listed in /etc/fstab will be
101       converted into native units dynamically at boot and when the
102       configuration of the system manager is reloaded. In general,
103       configuring mount points through /etc/fstab is the preferred approach.
104       See systemd-fstab-generator(8) for details about the conversion.
105
106       The NFS mount option bg for NFS background mounts as documented in
107       nfs(5) is detected by systemd-fstab-generator and the options are
108       transformed so that systemd fulfills the job-control implications of
109       that option. Specifically systemd-fstab-generator acts as though
110       "x-systemd.mount-timeout=infinity,retry=10000" was prepended to the
111       option list, and "fg,nofail" was appended. Depending on specific
112       requirements, it may be appropriate to provide some of these options
113       explicitly, or to make use of the "x-systemd.automount" option
114       described below instead of using "bg".
115
116       When reading /etc/fstab a few special mount options are understood by
117       systemd which influence how dependencies are created for mount points.
118       systemd will create a dependency of type Wants= or Requires= (see
119       option nofail below), from either local-fs.target or remote-fs.target,
120       depending whether the file system is local or remote.
121
122       x-systemd.requires=
123           Configures a Requires= and an After= dependency between the created
124           mount unit and another systemd unit, such as a device or mount
125           unit. The argument should be a unit name, or an absolute path to a
126           device node or mount point. This option may be specified more than
127           once. This option is particularly useful for mount point
128           declarations that need an additional device to be around (such as
129           an external journal device for journal file systems) or an
130           additional mount to be in place (such as an overlay file system
131           that merges multiple mount points). See After= and Requires= in
132           systemd.unit(5) for details.
133
134       x-systemd.before=, x-systemd.after=
135           Configures a Before= dependency or After= between the created mount
136           unit and another systemd unit, such as a mount unit. The argument
137           should be a unit name or an absolute path to a mount point. This
138           option may be specified more than once. This option is particularly
139           useful for mount point declarations with nofail option that are
140           mounted asynchronously but need to be mounted before or after some
141           unit start, for example, before local-fs.target unit. See Before=
142           and After= in systemd.unit(5) for details.
143
144       x-systemd.requires-mounts-for=
145           Configures a RequiresMountsFor= dependency between the created
146           mount unit and other mount units. The argument must be an absolute
147           path. This option may be specified more than once. See
148           RequiresMountsFor= in systemd.unit(5) for details.
149
150       x-systemd.device-bound
151           The block device backed file system will be upgraded to BindsTo=
152           dependency. This option is only useful when mounting file systems
153           manually with mount(8) as the default dependency in this case is
154           Requires=. This option is already implied by entries in /etc/fstab
155           or by mount units.
156
157       x-systemd.automount
158           An automount unit will be created for the file system. See
159           systemd.automount(5) for details.
160
161       x-systemd.idle-timeout=
162           Configures the idle timeout of the automount unit. See
163           TimeoutIdleSec= in systemd.automount(5) for details.
164
165       x-systemd.device-timeout=
166           Configure how long systemd should wait for a device to show up
167           before giving up on an entry from /etc/fstab. Specify a time in
168           seconds or explicitly append a unit such as "s", "min", "h", "ms".
169
170           Note that this option can only be used in /etc/fstab, and will be
171           ignored when part of the Options= setting in a unit file.
172
173       x-systemd.mount-timeout=
174           Configure how long systemd should wait for the mount command to
175           finish before giving up on an entry from /etc/fstab. Specify a time
176           in seconds or explicitly append a unit such as "s", "min", "h",
177           "ms".
178
179           Note that this option can only be used in /etc/fstab, and will be
180           ignored when part of the Options= setting in a unit file.
181
182           See TimeoutSec= below for details.
183
184       x-systemd.makefs
185           The file system will be initialized on the device. If the device is
186           not "empty", i.e. it contains any signature, the operation will be
187           skipped. It is hence expected that this option remains set even
188           after the device has been initialized.
189
190           Note that this option can only be used in /etc/fstab, and will be
191           ignored when part of the Options= setting in a unit file.
192
193           See systemd-makefs@.service(8).
194
195           wipefs(8) may be used to remove any signatures from a block device
196           to force x-systemd.makefs to reinitialize the device.
197
198       x-systemd.growfs
199           The file system will be grown to occupy the full block device. If
200           the file system is already at maximum size, no action will be
201           performed. It is hence expected that this option remains set even
202           after the file system has been grown. Only certain file system
203           types are supported, see systemd-makefs@.service(8) for details.
204
205           Note that this option can only be used in /etc/fstab, and will be
206           ignored when part of the Options= setting in a unit file.
207
208       _netdev
209           Normally the file system type is used to determine if a mount is a
210           "network mount", i.e. if it should only be started after the
211           network is available. Using this option overrides this detection
212           and specifies that the mount requires network.
213
214           Network mount units are ordered between remote-fs-pre.target and
215           remote-fs.target, instead of local-fs-pre.target and
216           local-fs.target. They also pull in network-online.target and are
217           ordered after it and network.target.
218
219       noauto, auto
220           With noauto, the mount unit will not be added as a dependency for
221           local-fs.target or remote-fs.target. This means that it will not be
222           mounted automatically during boot, unless it is pulled in by some
223           other unit. The auto option has the opposite meaning and is the
224           default. Note that the noauto option has an effect on the mount
225           unit itself only — if x-systemd.automount is used (see above), then
226           the matching automount unit will still be pulled in by these
227           targets.
228
229       nofail
230           With nofail, this mount will be only wanted, not required, by
231           local-fs.target or remote-fs.target. Moreover the mount unit is not
232           ordered before these target units. This means that the boot will
233           continue without waiting for the mount unit and regardless whether
234           the mount point can be mounted successfully.
235
236       x-initrd.mount
237           An additional filesystem to be mounted in the initramfs. See
238           initrd-fs.target description in systemd.special(7).
239
240       If a mount point is configured in both /etc/fstab and a unit file that
241       is stored below /usr, the former will take precedence. If the unit file
242       is stored below /etc, it will take precedence. This means: native unit
243       files take precedence over traditional configuration files, but this is
244       superseded by the rule that configuration in /etc will always take
245       precedence over configuration in /usr.
246

OPTIONS

248       Mount files must include a [Mount] section, which carries information
249       about the file system mount points it supervises. A number of options
250       that may be used in this section are shared with other unit types.
251       These options are documented in systemd.exec(5) and systemd.kill(5).
252       The options specific to the [Mount] section of mount units are the
253       following:
254
255       What=
256           Takes an absolute path of a device node, file or other resource to
257           mount. See mount(8) for details. If this refers to a device node, a
258           dependency on the respective device unit is automatically created.
259           (See systemd.device(5) for more information.) This option is
260           mandatory. Note that the usual specifier expansion is applied to
261           this setting, literal percent characters should hence be written as
262           "%%".
263
264       Where=
265           Takes an absolute path of a directory for the mount point; in
266           particular, the destination cannot be a symbolic link. If the mount
267           point does not exist at the time of mounting, it is created. This
268           string must be reflected in the unit filename. (See above.) This
269           option is mandatory.
270
271       Type=
272           Takes a string for the file system type. See mount(8) for details.
273           This setting is optional.
274
275       Options=
276           Mount options to use when mounting. This takes a comma-separated
277           list of options. This setting is optional. Note that the usual
278           specifier expansion is applied to this setting, literal percent
279           characters should hence be written as "%%".
280
281       SloppyOptions=
282           Takes a boolean argument. If true, parsing of the options specified
283           in Options= is relaxed, and unknown mount options are tolerated.
284           This corresponds with mount(8)'s -s switch. Defaults to off.
285
286       LazyUnmount=
287           Takes a boolean argument. If true, detach the filesystem from the
288           filesystem hierarchy at time of the unmount operation, and clean up
289           all references to the filesystem as soon as they are not busy
290           anymore. This corresponds with umount(8)'s -l switch. Defaults to
291           off.
292
293       ForceUnmount=
294           Takes a boolean argument. If true, force an unmount (in case of an
295           unreachable NFS system). This corresponds with umount(8)'s -f
296           switch. Defaults to off.
297
298       DirectoryMode=
299           Directories of mount points (and any parent directories) are
300           automatically created if needed. This option specifies the file
301           system access mode used when creating these directories. Takes an
302           access mode in octal notation. Defaults to 0755.
303
304       TimeoutSec=
305           Configures the time to wait for the mount command to finish. If a
306           command does not exit within the configured time, the mount will be
307           considered failed and be shut down again. All commands still
308           running will be terminated forcibly via SIGTERM, and after another
309           delay of this time with SIGKILL. (See KillMode= in
310           systemd.kill(5).) Takes a unit-less value in seconds, or a time
311           span value such as "5min 20s". Pass 0 to disable the timeout logic.
312           The default value is set from DefaultTimeoutStartSec= option in
313           systemd-system.conf(5).
314
315       Check systemd.exec(5) and systemd.kill(5) for more settings.
316

SEE ALSO

318       systemd(1), systemctl(1), systemd-system.conf(5), systemd.unit(5),
319       systemd.exec(5), systemd.kill(5), systemd.resource-control(5),
320       systemd.service(5), systemd.device(5), proc(5), mount(8), systemd-
321       fstab-generator(8), systemd.directives(7), systemd-mount(1)
322

NOTES

324        1. API File Systems
325           https://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
326
327
328
329systemd 243                                                   SYSTEMD.MOUNT(5)
Impressum