Forrest logo
back to the repquota tool

repquota:tldr:cdd96

repquota: Report on all quotas for users and groups in a human-readable format.
$ sudo repquota -augs
try on your machine

The command "sudo repquota -augs" is used to display disk usage and limits for all users or specific user groups on a Linux system. Here's a breakdown of the options and their meanings:

  • "sudo": The "sudo" command allows a user with administrative privileges to execute a command as the root user or another user.
  • "repquota": This is the command used to generate disk quota report.
  • "-a": The "-a" option specifies that the report should include information for all users and groups on the system.
  • "-u": The "-u" option specifies that the report should display user quota information.
  • "-g": The "-g" option specifies that the report should display group quota information.
  • "-s": The "-s" option is used to display the report in a summarized format.

So, when you run the "sudo repquota -augs" command, it will generate a disk quota report that includes information for all users and groups in a summarized format, displaying both user and group quota information.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the repquota tool