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

quota

The command line tool "quota" is used in Unix-like operating systems to manage disk quotas for users.

It allows administrators to set limits on the amount of disk space a user or group can use.

With the "quota" command, administrators can track and control disk usage, preventing users from exceeding their allocated storage space.

The tool provides information on current disk usage, limits, and usage warnings for each user or group.

It allows administrators to generate reports on quota usage for auditing purposes or to identify users who may require additional storage space.

The "quota" command also enables administrators to modify user/group quota settings, such as adjusting limits or resetting usage statistics.

It supports soft quotas and hard quotas. Soft quotas allow users to temporarily exceed their limit without any immediate consequences, whereas hard quotas enforce strict limits.

The command can also be used by regular users to check their own disk quota information and usage status.

The "quota" tool typically works in tandem with the "quotacheck" command, which is used to initialize or update the disk quota system.

Overall, the "quota" command is a critical tool for system administrators to manage and control disk space allocation and usage in Unix-like systems.

List of commands for quota:

  • quota:tldr:08cdf quota: Show disk quotas in human-readable units for the current user.
    $ quota -s
    try on your machine
    explain this command
  • quota:tldr:21b8c quota: Print quotas for the groups of which the current user is a member.
    $ quota -g
    try on your machine
    explain this command
  • quota:tldr:34a95 quota: Quiet output (only display quotas on filesystems where usage is over quota).
    $ quota -q
    try on your machine
    explain this command
  • quota:tldr:96252 quota: Show disk quotas for another user.
    $ sudo quota -u ${username}
    try on your machine
    explain this command
  • quota:tldr:dffe0 quota: Verbose output (also display quotas on filesystems where no storage is allocated).
    $ quota -v
    try on your machine
    explain this command
tool overview