]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - bin/df/df.1
Merge bmake-20121111
[FreeBSD/FreeBSD.git] / bin / df / df.1
1 .\"-
2 .\" Copyright (c) 1989, 1990, 1993
3 .\"     The Regents of the University of California.  All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\" 4. Neither the name of the University nor the names of its contributors
14 .\"    may be used to endorse or promote products derived from this software
15 .\"    without specific prior written permission.
16 .\"
17 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 .\" SUCH DAMAGE.
28 .\"
29 .\"     @(#)df.1        8.3 (Berkeley) 5/8/95
30 .\" $FreeBSD$
31 .\"
32 .Dd March 3, 2012
33 .Dt DF 1
34 .Os
35 .Sh NAME
36 .Nm df
37 .Nd display free disk space
38 .Sh SYNOPSIS
39 .Nm
40 .Op Fl b | g | H | h | k | m | P
41 .Op Fl acilnT
42 .Op Fl t Ar type
43 .Op Ar file | filesystem ...
44 .Sh DESCRIPTION
45 The
46 .Nm
47 utility
48 displays statistics about the amount of free disk space on the specified
49 .Ar file system
50 or on the file system of which
51 .Ar file
52 is a part.
53 Values are displayed in 512-byte per block counts.
54 If neither a file or a file system operand is specified,
55 statistics for all mounted file systems are displayed
56 (subject to the
57 .Fl t
58 option below).
59 .Pp
60 The following options are available:
61 .Bl -tag -width indent
62 .It Fl a
63 Show all mount points, including those that were mounted with the
64 .Dv MNT_IGNORE
65 flag.
66 This is implied for file systems specified on the command line.
67 .It Fl b
68 Use 512-byte blocks rather than the default.
69 This overrides the
70 .Ev BLOCKSIZE
71 specification from the environment.
72 .It Fl c
73 Display a grand total.
74 .It Fl g
75 Use 1073741824-byte (1-Gbyte) blocks rather than the default.
76 This overrides the
77 .Ev BLOCKSIZE
78 specification from the environment.
79 .It Fl H
80 .Dq Human-readable
81 output.
82 Use unit suffixes: Byte, Kilobyte, Megabyte,
83 Gigabyte, Terabyte and Petabyte in order to reduce the number of
84 digits to four or fewer using base 10 for sizes.
85 .It Fl h
86 .Dq Human-readable
87 output.
88 Use unit suffixes: Byte, Kilobyte, Megabyte,
89 Gigabyte, Terabyte and Petabyte in order to reduce the number of
90 digits to four or fewer using base 2 for sizes.
91 Inodes statistics, if enabled with
92 .Fl i ,
93 are always printed in base 10.
94 .It Fl i
95 Include statistics on the number of free inodes.
96 .It Fl k
97 Use 1024-byte (1-Kbyte) blocks rather than the default.
98 This overrides the
99 .Ev BLOCKSIZE
100 specification from the environment and the
101 .Fl P
102 option.
103 .It Fl l
104 Only display information about locally-mounted file systems.
105 .It Fl m
106 Use 1048576-byte (1-Mbyte) blocks rather than the default.
107 This overrides the
108 .Ev BLOCKSIZE
109 specification from the environment.
110 .It Fl n
111 Print out the previously obtained statistics from the file systems.
112 This option should be used if it is possible that one or more
113 file systems are in a state such that they will not be able to provide
114 statistics without a long delay.
115 When this option is specified,
116 .Nm
117 will not request new statistics from the file systems, but will respond
118 with the possibly stale statistics that were previously obtained.
119 .It Fl P
120 Use POSIX compliant output of 512-byte blocks rather than the default.
121 This overrides the
122 .Ev BLOCKSIZE
123 specification from the environment.
124 The
125 .Fl k
126 option overrides this option.
127 .It Fl t
128 Only print out statistics for file systems of the specified types.
129 More than one type may be specified in a comma separated list.
130 The list of file system types can be prefixed with
131 .Dq no
132 to specify the file system types for which action should
133 .Em not
134 be taken.
135 For example, the
136 .Nm
137 command:
138 .Bd -literal -offset indent
139 df -t nonfs,nullfs
140 .Ed
141 .Pp
142 lists all file systems except those of type
143 .Tn NFS
144 and
145 .Tn NULLFS .
146 The
147 .Xr lsvfs 1
148 command can be used to find out the types of file systems
149 that are available on the system.
150 .It Fl T
151 Include file system type.
152 .It Fl ,
153 (Comma) Print sizes grouped and separated by thousands using the
154 non-monetary separator returned by
155 .Xr localeconv 3 ,
156 typically a comma or period.
157 If no locale is set, or the locale does not have a non-monetary separator, this
158 option has no effect.
159 .El
160 .Sh ENVIRONMENT
161 .Bl -tag -width BLOCKSIZE
162 .It Ev BLOCKSIZE
163 If the environment variable
164 .Ev BLOCKSIZE
165 is set, the block counts will be displayed in units of that size block.
166 .El
167 .Sh SEE ALSO
168 .Xr lsvfs 1 ,
169 .Xr quota 1 ,
170 .Xr fstatfs 2 ,
171 .Xr getfsstat 2 ,
172 .Xr statfs 2 ,
173 .Xr getmntinfo 3 ,
174 .Xr localeconv 3 ,
175 .Xr fstab 5 ,
176 .Xr mount 8 ,
177 .Xr pstat 8 ,
178 .Xr quot 8 ,
179 .Xr swapinfo 8
180 .Sh STANDARDS
181 With the exception of most options,
182 the
183 .Nm
184 utility conforms to
185 .St -p1003.1-2004 ,
186 which defines only the
187 .Fl k , P
188 and
189 .Fl t
190 options.
191 .Sh HISTORY
192 A
193 .Nm
194 command appeared in
195 .At v1 .
196 .Sh BUGS
197 The
198 .Fl n
199 flag is ignored if a file or file system is specified.
200 Also, if a mount
201 point is not accessible by the user, it is possible that the file system
202 information could be stale.