File: fsfreeze.8

package info (click to toggle)
util-linux 2.33.1-0.1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 44,712 kB
  • sloc: ansic: 126,306; sh: 15,468; yacc: 1,170; makefile: 383; xml: 348; python: 316; csh: 37; sed: 16; perl: 15
file content (89 lines) | stat: -rw-r--r-- 2,818 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
.TH FSFREEZE 8 "July 2014" "util-linux" "System Administration"
.SH NAME
fsfreeze \- suspend access to a filesystem (Ext3/4, ReiserFS, JFS, XFS)
.SH SYNOPSIS
.B fsfreeze
.BR \--freeze | \--unfreeze
.I mountpoint

.SH DESCRIPTION
.B fsfreeze
suspends or resumes access to a filesystem.
.PP
.B fsfreeze
halts any new access to the filesystem and creates a stable image on disk.
.B fsfreeze
is intended to be used with hardware RAID devices that support the creation
of snapshots.
.PP
.B fsfreeze
is unnecessary for
.B device-mapper
devices.  The device-mapper (and LVM) automatically freezes a filesystem
on the device when a snapshot creation is requested.
For more details see the
.BR dmsetup (8)
man page.
.PP
The
.I mountpoint
argument is the pathname of the directory where the filesystem
is mounted.
The filesystem must be mounted to be frozen (see
.BR mount (8)).
.PP
Note that access-time updates are also suspended if the filesystem is mounted with
the traditional atime behavior (mount option \fBstrictatime\fR, for more details see
.BR mount (8)).

.SH OPTIONS
.TP
.BR \-f , " \-\-freeze"
This option requests the specified a filesystem to be frozen from new
modifications.  When this is selected, all ongoing transactions in the
filesystem are allowed to complete, new write system calls are halted, other
calls which modify the filesystem are halted, and all dirty data, metadata, and
log information are written to disk.  Any process attempting to write to the
frozen filesystem will block waiting for the filesystem to be unfrozen.
.sp
Note that even after freezing, the on-disk filesystem can contain
information on files that are still in the process of unlinking.
These files will not be unlinked until the filesystem is unfrozen
or a clean mount of the snapshot is complete.
.TP
.BR \-u , " \-\-unfreeze"
This option is used to un-freeze the filesystem and allow operations to
continue.  Any filesystem modifications that were blocked by the freeze are
unblocked and allowed to complete.
.TP
.BR \-V , " \-\-version"
Display version information and exit.
.TP
.BR \-h , " \-\-help"
Display help text and exit.
.SH FILESYSTEM SUPPORT
This command will work only if filesystem supports has support for freezing.
List of these filesystems include (2016-12-18)
.BR btrfs ,
.BR ext2/3/4 ,
.BR f2fs ,
.BR jfs ,
.BR nilfs2 ,
.BR reiserfs ,
and
.BR xfs .
Previous list may be incomplete, as more filesystems get support.  If in
doubt easiest way to know if a filesystem has support is create a small
loopback mount and test freezing it.
.SH AUTHOR
.PP
Written by Hajime Taira.
.SH NOTES
.PP
This man page is based on
.BR xfs_freeze (8).
.SH SEE ALSO
.BR mount (8)
.SH AVAILABILITY
The fsfreeze command is part of the util-linux package and is available from
https://www.kernel.org/pub/linux/utils/util-linux/.