xfs_freeze

From RaySoft

xfs_freeze suspends and resumes access to an XFS filesystem.[1]

xfs_freeze halts new access to the filesystem and creates a stable image on disk. xfs_freeze is intended to be used with volume managers and hardware RAID devices that support the creation of snapshots.[1]

The mount-point argument is the pathname of the directory where the filesystem is mounted. The filesystem must be mounted to be frozen (see mount).[1]

Documentation

Syntax

xfs_freeze -f|-u MOUNTPOINT

Parameters

-f
This flag requests the specified XFS 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.
-u
This flag 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.

References

  1. 1.0 1.1 1.2 man 8 'xfs_freeze'