Forrest logo
tool overview
On this page you find all important commands for the CLI tool repquota. If the command you are looking for is missing please ask our AI.

repquota

The repquota command line tool is used in Unix-like operating systems to provide a report on disk usage and quota information for a particular filesystem. It is commonly used in environments where disk space needs to be managed efficiently.

Running the repquota command without any arguments provides a detailed report of the quota database for all users and groups on the specified filesystem. It displays information such as the filesystem block usage, disk quotas, limits, and usage summaries for each user or group.

The tool is typically executed by system administrators to monitor and enforce disk quotas on a per-user or per-group basis. It helps identify users who have exceeded their disk quota and provides visibility into disk usage patterns.

The repquota command can be customized with various options to retrieve specific information. For example, the -a flag can be used to show information about all filesystems mounted on the system.

The output of repquota can be parsed and processed to generate alerts, reports, or even automate certain actions based on disk usage or quota violations.

By utilizing repquota, system administrators can effectively manage disk space, ensure fair resource allocation, and prevent potential disk space shortages.

List of commands for repquota:

  • repquota:tldr:1aefe repquota: Report on quotas for groups only.
    $ sudo repquota --group ${filesystem}
    try on your machine
    explain this command
  • repquota:tldr:1b930 repquota: Report on used quota and limits in a human-readable format.
    $ sudo repquota --human-readable ${filesystem}
    try on your machine
    explain this command
  • repquota:tldr:21490 repquota: Report stats for all quotas in use.
    $ sudo repquota -all
    try on your machine
    explain this command
  • repquota:tldr:cdd96 repquota: Report on all quotas for users and groups in a human-readable format.
    $ sudo repquota -augs
    try on your machine
    explain this command
  • repquota:tldr:fc839 repquota: Report quota stats for all users, even those who aren't using any of their quota.
    $ sudo repquota -v ${filesystem}
    try on your machine
    explain this command
  • repquota:tldr:ffdf4 repquota: Report on quotas for users only.
    $ repquota --user ${filesystem}
    try on your machine
    explain this command
tool overview