1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-16 19:35:44 +02:00
tldr/pages/linux/repquota.md

29 lines
758 B
Markdown
Raw Normal View History

2016-10-03 15:53:51 +01:00
# repquota
> Display a summary of existing file quotas for a filesystem.
> More information: <https://manned.org/repquota>.
2016-10-03 15:53:51 +01:00
- Report stats for all quotas in use:
`sudo repquota {{[-a|--all]}}`
2016-10-03 15:53:51 +01:00
- Report quota stats for all users, even those who aren't using any of their quota:
`sudo repquota {{[-v|--verbose]}} {{filesystem}}`
2016-10-03 15:53:51 +01:00
- Report on quotas for users only:
2016-10-03 15:53:51 +01:00
`repquota {{[-u|--user]}} {{filesystem}}`
2016-10-03 15:53:51 +01:00
- Report on quotas for groups only:
2016-10-03 15:53:51 +01:00
`sudo repquota {{[-g|--group]}} {{filesystem}}`
2016-10-03 15:53:51 +01:00
- Report on used quota and limits in a human-readable format:
`sudo repquota {{[-s|--human-readable]}} {{filesystem}}`
2016-10-03 15:53:51 +01:00
- Report on all quotas for users and groups in a human-readable format:
`sudo repquota {{[-augs|--all --user --group --human-readable]}}`