Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

quot(8) [netbsd man page]

QUOT(8) 						    BSD System Manager's Manual 						   QUOT(8)

NAME
quot -- display disk space occupied by each user SYNOPSIS
quot [-acfhknv] [filesystem ...] DESCRIPTION
quot is used to gather statistics about the disk usage for each local user. The following options are available: -a Include statistics for all mounted filesystems. -c Display three columns containing number of blocks per file, number of files in this category, and aggregate total of blocks in files with this or lower size. -f For each user, display count of files and space occupied. -h Estimate the number of blocks in each file based on its size. Despite that this doesn't give the correct results (it doesn't account for the holes in files), this option isn't any faster and thus is discouraged. -k By default, all sizes are reported in 512-byte block counts. The -k options causes the numbers to be reported in kilobyte counts. -n Given a list of inodes (plus some optional data on each line) in the standard input, for each file print out the owner (plus the remainder of the input line). This is traditionally used in the pipe: ncheck filesystem | sort +0n | quot -n filesystem to get a report of files and their owners. -v In addition to the default output, display the number of files not accessed within 30, 60 and 90 days. ENVIRONMENT
BLOCKSIZE If the environment variable BLOCKSIZE is set, and the -k option is not specified, the block counts will be displayed in units of that size block. SEE ALSO
df(1), quota(1), getbsize(3), getmntinfo(3), fstab(5), mount(8) BSD
February 8, 1994 BSD

Check Out this Related Man Page

DF(1)							    BSD General Commands Manual 						     DF(1)

NAME
df -- display free disk space SYNOPSIS
df [-agklmn] [-G | -i | -P] [-t type] [file | file_system ...] DESCRIPTION
df displays statistics about the amount of free disk space on the specified file_system or on the file system of which file is a part. By default, all sizes are reported in 512-byte block counts. If neither a file or a file_system operand is specified, statistics for all mounted file systems are displayed (subject to the -l and -t options below). Note that the printed count of available blocks takes minfree into account, and thus will be negative when the number of free blocks on the filesystem is less than minfree. The following options are available: -a Show all mount points, including those that were mounted with the MNT_IGNORE flag. -G Display all the fields of the structure(s) returned by statvfs(2). This option cannot be used with the -i or -P options, and it is modelled after the Solaris -g option. This option will override the -g, -h, -k, and -m options, as well as any setting of BLOCKSIZE. -g The -g option causes the numbers to be reported in gigabytes (1024*1024*1024 bytes). -h "Human-readable" output. Use unit suffixes: Byte, Kilobyte, Megabyte, Gigabyte, Terabyte, Petabyte, Exabyte in order to reduce the number of digits to four or less. -i Include statistics on the number of free inodes. -k By default, all sizes are reported in 512-byte block counts. The -k option causes the numbers to be reported in kilobytes (1024 bytes). -l Display statistics only about mounted file systems with the MNT_LOCAL flag set. If a non-local file system is given as an argument, a warning is issued and no information is given on that file system. -m The -m option causes the numbers to be reported in megabytes (1024*1024 bytes). -n Print out the previously obtained statistics from the file systems. This option should be used if it is possible that one or more file systems are in a state such that they will not be able to provide statistics without a long delay. When this option is speci- fied, df will not request new statistics from the file systems, but will respond with the possibly stale statistics that were previ- ously obtained. -P Produce output in the following portable format: If both the -P and -k option are specified, the output will be preceded by the following header line, formatted to match the data following it: "Filesystem 1024-blocks Used Available Capacity Mounted on " If the -P option is specified without the -k options, the output will be preceded by the following header line, formatted to match the data following it: "Filesystem <blksize>-blocks Used Available Capacity Mounted on " The header line is followed by data formatted as follows: "%s %d %d %d %d%% %s ", <file system name>, <total space>, <space used>, <space free>, <percentage used>, <file system root> Note that the -i option may not be specified with -P. -t type Is used to indicate the actions should only be taken on filesystems of the specified type. More than one type may be specified in a comma-separated list. The list of filesystem types can be prefixed with ``no'' to specify the filesystem types for which action should not be taken. If a file system is given on the command line that is not of the specified type, a warning is issued and no information is given on that file system. ENVIRONMENT
BLOCKSIZE If the environment variable BLOCKSIZE is set, and the -g, -h, -k and -m options are not specified, the block counts will be dis- played in units of that size block. SEE ALSO
quota(1), fstatvfs(2), getvfsstat(2), statvfs(2), getbsize(3), getmntinfo(3), fs(5), fstab(5), mount(8), quot(8), tunefs(8) HISTORY
A df utility appeared in Version 6 AT&T UNIX. BSD
March 4, 2008 BSD
Man Page