Linux "fsfreeze" Command Line Options and Examples
suspend access to a filesystem

fsfreeze suspends or resumes access to a filesystem. fsfreeze halts any new access to the filesystem and creates a stable image on disk. fsfreeze is intended to be used with hardware RAID devices that support the creation of snapshots.


Usage:

fsfreeze --freeze|--unfreeze mountpoint




Command Line Options:

-f
This option requests the specified a filesystem to be frozen from new modifications. When this is selected, all ongoingtransactions in the filesystem are allowed to complete, new write system calls are halted, other calls which modify thefilesystem are halted, and all dirty data, metadata, and log information are written to disk. Any process attempting to writeto the frozen filesystem will block waiting for the filesystem to be unfrozen.Note that even after freezing, the on-disk filesystem can contain information on files that are still in the process ofunlinking. These files will not be unlinked until the filesystem is unfrozen or a clean mount of the snapshot is complete.
fsfreeze -f ...
-u
This option is used to un-freeze the filesystem and allow operations to continue. Any filesystem modifications that wereblocked by the freeze are unblocked and allowed to complete.
fsfreeze -u ...
-V
Display version information and exit.
fsfreeze -V ...
-h
Display help text and exit.FILESYSTEM SUPPORTThis command will work only if filesystem supports has support for freezing. List of these filesystems include (2016-12-18) btrfs,ext2/3/4, f2fs, jfs, nilfs2, reiserfs, and xfs. Previous list may be incomplete, as more filesystems get support. If in doubt easi‐est way to know if a filesystem has support is create a small loopback mount and test freezing it.AUTHORWritten by Hajime Taira.NOTESThis man page is based on xfs_freeze(8).
fsfreeze -h ...