4.5.2. Managing Disk Quotas
If quotas are implemented, they need some maintenance — mostly in the form of watching to see if the quotas are exceeded and making sure the quotas are accurate.
Of course, if users repeatedly exceed their quotas or consistently reach their soft limits, a system administrator has a few choices to make depending on what type of users they are and how much disk space impacts their work. The administrator can either help the user determine how to use less disk space or increase the user's disk quota.
You can create a disk usage report by running the
repquota
utility. For example, the command repquota /home
produces this output:
*** Report for user quotas on device /dev/mapper/VolGroup00-LogVol02 Block grace time: 7days; Inode grace time: 7days Block limits File limits User used soft hard grace used soft hard grace ---------------------------------------------------------------------- root -- 36 0 0 4 0 0 kristin -- 540 0 0 125 0 0 testuser -- 440400 500000 550000 37418 0 0
To view the disk usage report for all (option
-a
) quota-enabled file systems, use the command:
repquota -a
While the report is easy to read, a few points should be explained. The
--
displayed after each user is a quick way to determine whether the block limits have been exceeded. If the block soft limit is exceeded, a +
appears in place of the first -
in the output. The second -
indicates the inode limit, but GFS2 file systems do not support inode limits so that character will remain as -
. GFS2 file systems do not support a grace period, so the grace
column will remain blank.
Note that the
repquota
command is not supported over NFS, irrespective of the underlying file system.