|
|
7c06a3 |
From 801386a31d0ae47779cf74cbb4f343be346a07db Mon Sep 17 00:00:00 2001
|
|
|
7c06a3 |
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
|
|
7c06a3 |
Date: Wed, 6 Mar 2013 11:21:50 +0100
|
|
|
7c06a3 |
Subject: [PATCH 1/4] Add quotasync(1) manual page
|
|
|
7c06a3 |
MIME-Version: 1.0
|
|
|
7c06a3 |
Content-Type: text/plain; charset=UTF-8
|
|
|
7c06a3 |
Content-Transfer-Encoding: 8bit
|
|
|
7c06a3 |
|
|
|
7c06a3 |
Signed-off-by: Petr Písař <ppisar@redhat.com>
|
|
|
7c06a3 |
Signed-off-by: Jan Kara <jack@suse.cz>
|
|
|
7c06a3 |
---
|
|
|
7c06a3 |
quotasync.1 | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
|
7c06a3 |
1 file changed, 72 insertions(+)
|
|
|
7c06a3 |
create mode 100644 quotasync.1
|
|
|
7c06a3 |
|
|
|
7c06a3 |
diff --git a/quotasync.1 b/quotasync.1
|
|
|
7c06a3 |
new file mode 100644
|
|
|
7c06a3 |
index 0000000..e968403
|
|
|
7c06a3 |
--- /dev/null
|
|
|
7c06a3 |
+++ b/quotasync.1
|
|
|
7c06a3 |
@@ -0,0 +1,72 @@
|
|
|
7c06a3 |
+.TH QUOTASYNC 1
|
|
|
7c06a3 |
+.SH NAME
|
|
|
7c06a3 |
+quotasync \- synchronize in-kernel file system usage and limits to disk format
|
|
|
7c06a3 |
+.SH SYNOPSIS
|
|
|
7c06a3 |
+.B quotasync
|
|
|
7c06a3 |
+[
|
|
|
7c06a3 |
+.B -ug
|
|
|
7c06a3 |
+]
|
|
|
7c06a3 |
+.IR mount-point ...
|
|
|
7c06a3 |
+.br
|
|
|
7c06a3 |
+.B quotasync
|
|
|
7c06a3 |
+[
|
|
|
7c06a3 |
+.B -ug
|
|
|
7c06a3 |
+]
|
|
|
7c06a3 |
+.B -a
|
|
|
7c06a3 |
+.br
|
|
|
7c06a3 |
+.B quotasync
|
|
|
7c06a3 |
+.B -h
|
|
|
7c06a3 |
+|
|
|
|
7c06a3 |
+.B -V
|
|
|
7c06a3 |
+.SH DESCRIPTION
|
|
|
7c06a3 |
+.B quotasync
|
|
|
7c06a3 |
+flushes file system usage and limits from kernel memory to quota files stored
|
|
|
7c06a3 |
+in the file system. By default only the user quotas are synchronized.
|
|
|
7c06a3 |
+.P
|
|
|
7c06a3 |
+This tool can be useful if you want to display accurate quotas by tools that
|
|
|
7c06a3 |
+parse quota files, like
|
|
|
7c06a3 |
+.BR repquota (8).
|
|
|
7c06a3 |
+.SH OPTIONS
|
|
|
7c06a3 |
+.TP
|
|
|
7c06a3 |
+.B -u, --user
|
|
|
7c06a3 |
+Synchronize user usage and limits.
|
|
|
7c06a3 |
+.TP
|
|
|
7c06a3 |
+.B -g, --group
|
|
|
7c06a3 |
+Synchronize group usage and limits.
|
|
|
7c06a3 |
+.TP
|
|
|
7c06a3 |
+.B -a, --all
|
|
|
7c06a3 |
+Synchronize usage and limits on all file systems. You have to specify this
|
|
|
7c06a3 |
+option or to specify desired file systems.
|
|
|
7c06a3 |
+.TP
|
|
|
7c06a3 |
+.B -V, --version
|
|
|
7c06a3 |
+Show program version information and exit.
|
|
|
7c06a3 |
+.TP
|
|
|
7c06a3 |
+.B -h, --help
|
|
|
7c06a3 |
+Show program usage and exit.
|
|
|
7c06a3 |
+.SH DIAGNOSTICS
|
|
|
7c06a3 |
+If requested synchronization fails, or invalid option is given,
|
|
|
7c06a3 |
+.B quotasync
|
|
|
7c06a3 |
+will terminate with non-zero exit code. Otherwise it will return zero.
|
|
|
7c06a3 |
+.SH FILES
|
|
|
7c06a3 |
+.PD 0
|
|
|
7c06a3 |
+.TP 16
|
|
|
7c06a3 |
+.B aquota.user " or " aquota.group
|
|
|
7c06a3 |
+Quota file at the file system root (version 2 quota, non-XFS/GFS2 file systems).
|
|
|
7c06a3 |
+.TP 16
|
|
|
7c06a3 |
+.B quota.user " or " quota.group
|
|
|
7c06a3 |
+Quota file at the file system root (version 1 quota, non-XFS/GFS2 file systems).
|
|
|
7c06a3 |
+.TP 16
|
|
|
7c06a3 |
+.B /etc/mtab
|
|
|
7c06a3 |
+List of mounted file systems maintained by user space.
|
|
|
7c06a3 |
+.TP 16
|
|
|
7c06a3 |
+.B /proc/mounts
|
|
|
7c06a3 |
+List of mounted file systems maintained by kernel.
|
|
|
7c06a3 |
+.PD
|
|
|
7c06a3 |
+.SH SEE ALSO
|
|
|
7c06a3 |
+.BR quota (1),
|
|
|
7c06a3 |
+.BR quotactl (2),
|
|
|
7c06a3 |
+.BR mount (8),
|
|
|
7c06a3 |
+.BR quotacheck (8),
|
|
|
7c06a3 |
+.BR quotaon (8),
|
|
|
7c06a3 |
+.BR repquota (8),
|
|
|
7c06a3 |
+.BR warnquota (8).
|
|
|
7c06a3 |
--
|
|
|
7c06a3 |
1.8.1.4
|
|
|
7c06a3 |
|