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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
|
.TH QUOTA 1
.SH NAME
quota \- display disk usage and limits
.SH SYNOPSIS
.B quota
[
.B -F
.I format-name
] [
.B -guqvswi
] [
.BR -l \ |
[
.BR -QAm
]]
.br
.B quota
[
.B -F
.I format-name
] [
.B -qvswi
] [
.BR -l \ |
[
.BR -QAm
]]
.B -u
.IR user ...
.br
.B quota
[
.B -F
.I format-name
] [
.B -qvswi
] [
.BR -l \ |
[
.BR -QAm
]]
.B -g
.IR group ...
.br
.B quota
[
.B -F
.I format-name
] [
.B -qvswi
] [
.BR -l \ |
[
.BR -QAm
]]
.B -P
.IR project ...
.br
.B quota
[
.B -F
.I format-name
] [
.B -qvswugQm
]
.B -f
.IR filesystem ...
.SH DESCRIPTION
.B quota
displays users' disk usage and limits.
By default only the user quotas are printed. By default space usage and limits
are shown in kbytes (and are named blocks for historical reasons).
.PP
.B quota
reports the quotas of all the filesystems listed in
.BR /etc/mtab .
For filesystems that are NFS-mounted a call to the rpc.rquotad on
the server machine is performed to get the information.
.SH OPTIONS
.TP
.B -F, --format=\f2format-name\f1
Show quota for specified format (ie. don't perform format autodetection).
Possible format names are:
.B vfsold
Original quota format with 16-bit UIDs / GIDs,
.B vfsv0
Quota format with 32-bit UIDs / GIDs, 64-bit space usage, 32-bit inode usage and limits,
.B vfsv1
Quota format with 64-bit quota limits and usage,
.B rpc
(quota over NFS),
.B xfs
(quota on XFS filesystem)
.TP
.B -g, --group
Print group quotas for the group
of which the user is a member.
The optional
.B group
argument(s) restricts the display to the specified group(s).
.TP
.B -u, --user
flag is equivalent to the default.
.TP
.B -P, --project
Print project quotas for the specified project.
.TP
.B -v, --verbose
will display quotas on filesystems
where no storage is allocated.
.TP
.B -s, --human-readable[=\f2units\f1]
option will make
.BR quota (1)
try to choose units for showing limits, used space and used inodes. Units can
be also specified explicitely by an optional argument in format [
.BR kgt
],[
.BR kgt
] where the first character specifies space units and the second character
specifies inode units.
.TP
.B --always-resolve
Always try to translate user / group name to uid / gid even if the name
is composed of digits only.
.TP
.B -p, --raw-grace
When user is in grace period, report time in seconds since epoch when his grace
time runs out (or has run out). Field is '0' when no grace time is in effect.
This is especially useful when parsing output by a script.
.TP
.B -i, --no-autofs
ignore mountpoints mounted by automounter
.TP
.B -l, --local-only
report quotas only on local filesystems (ie. ignore NFS mounted filesystems).
.TP
.B -A, --all-nfs
report quotas for all NFS filesystems even if they report to be on the same
device.
.TP
.B -f, --filesystem-list
report quotas only for filesystems specified on command line.
.TP
.B --filesystem=\f2path\f1
report quotas only for filesystem
.BR path .
This option can be specified multiple types and quota will be reported for each
specified filesystem. Unlike command line option
.B -f
remaining command like arguments are still treated as user / group / project names
to report.
.TP
.B -m, --no-mixed-pathnames
Currently, pathnames of NFSv4 mountpoints are sent without leading slash in the path.
.BR rpc.rquotad
uses this to recognize NFSv4 mounts and properly prepend pseudoroot of NFS filesystem
to the path. If you specify this option,
.BR quota
will always send paths with a leading slash. This can be useful for legacy reasons but
be aware that quota over RPC will stop working if you are using new
.BR rpc.rquotad .
.TP
.B -q, --quiet
Print a more terse message,
containing only information
on filesystems where usage is over quota.
.TP
.B -Q, --quiet-refuse
Do not print error message if connection to
.BR rpc.rquotad
is refused (usually this happens when
.BR rpc.rquotad
is not running on the server).
.TP
.B -w, --no-wrap
Do not wrap the line if the device name is too long. This can be useful when parsing
the output of
.BR quota (1)
by a script.
.TP
.B --show-mntpoint
Show also mount point as a filesystem identification.
.TP
.B --hide-device
Do not show device name in a filesystem identification.
.LP
Specifying both
.B \-g
and
.B \-u
displays both the user quotas and the group quotas (for
the user).
.LP
Only the super-user may use the
.B \-u
flag and the optional
.B user
argument to view the limits of other users. Also viewing of project quota
usage and limits is limited to super-user only.
Non-super-users can use the
.B \-g
flag and optional
.B group
argument to view only the limits of groups of which they are members.
.LP
The
.B \-q
flag takes precedence over the
.B \-v
flag.
.SH DIAGNOSTICS
If
.B quota
exits with a non-zero status, one or more filesystems
are over quota.
.SH FILES
.PD 0
.TP 20
.B aquota.user " or " aquota.group
quota file at the filesystem root (version 2 quota, non-XFS filesystems)
.TP 20
.B quota.user " or " quota.group
quota file at the filesystem root (version 1 quota, non-XFS filesystems)
.TP
.B /etc/mtab
default filesystems
.PD
.SH SEE ALSO
.BR quotactl (2),
.BR fstab (5),
.BR edquota (8),
.BR quotacheck (8),
.BR quotaon (8),
.BR quota_nld (8),
.BR repquota (8),
.BR warnquota (8),
.BR setquota (8)
|