ubase

suckless linux base utils
git clone git://git.2f30.org/ubase
Log | Files | Refs | README | LICENSE

commit c1a96ddb4c6905cdb6d81e52bd536153323d4b53
parent 6b83c2ce92d583b7dd5cdb499b252c7808406858
Author: sin <sin@2f30.org>
Date:   Thu, 26 Jun 2014 16:02:04 +0100

Add fsfreeze.8

Diffstat:
MMakefile | 1+
Afsfreeze.8 | 24++++++++++++++++++++++++
2 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -93,6 +93,7 @@ MAN1 = \ MAN8 = \ ctrlaltdel.8 \ + fsfreeze.8 \ getty.8 \ halt.8 \ hwclock.8 \ diff --git a/fsfreeze.8 b/fsfreeze.8 @@ -0,0 +1,24 @@ +.TH FSFREEZE 8 ubase-VERSION +.SH NAME +\fBfsfreeze\fR - Suspend access to a filesystem +.SH SYNOPSIS +\fBfsfreeze\fR [\fB-f\fR] [\fB-u\fR] \fImountpoint\fR +.SH DESCRIPTION +\fBfsfreeze\fR suspends and resumes access to a filesystem. +\fBfsfreeze\fR is intended to be used with hardware RAID +devices that support the creation of snapshots. +The \fImountpoint\fR argument is the pathname of the directory +where the filesystem is mounted. The filesystem must be mounted +to be frozen. +.SH OPTIONS +.TP +\fB-f\fR +Freeze the filesystem mounted at \fImountpoint\fR. +.TP +\fB-u\fR +Unfreeze the filesystem mounted at \fImountpoint\fR. +.SH BUGS +.TP +Only works for ext3/4, reiserfs, jfs and xfs. +.SH SEE ALSO +mount(8)