tldr/pages/common/quota.md

25 lines
531 B
Markdown
Raw Normal View History

2016-06-25 01:17:37 +01:00
# quota
> Display users' disk space usage and allocated limits.
> More information: <https://manned.org/quota>.
2016-06-25 01:17:37 +01:00
- Show disk quotas in human-readable units for the current user:
2016-06-25 09:42:42 +01:00
2017-05-23 18:14:47 +01:00
`quota -s`
2016-06-25 01:17:37 +01:00
2016-06-25 09:44:23 +01:00
- Verbose output (also display quotas on filesystems where no storage is allocated):
2016-06-25 09:42:42 +01:00
2016-06-25 01:17:37 +01:00
`quota -v`
2016-06-25 09:44:23 +01:00
- Quiet output (only display quotas on filesystems where usage is over quota):
2016-06-25 09:42:42 +01:00
2016-06-25 01:17:37 +01:00
`quota -q`
- Print quotas for the groups of which the current user is a member:
2016-06-25 09:42:42 +01:00
2016-06-25 01:17:37 +01:00
`quota -g`
2017-05-23 20:08:45 +01:00
- Show disk quotas for another user:
2016-06-25 09:42:42 +01:00
2016-06-25 01:17:37 +01:00
`sudo quota -u {{username}}`