Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

34
linux/edquota Normal file
View File

@@ -0,0 +1,34 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# edquota
> Edit quotas for a user or group. By default it operates on all filesystems with quotas.
> Quota information is stored permanently in the `quota.user` and `quota.group` files in the root of the filesystem.
> More information: <https://manned.org/edquota>.
- Edit quota of the current user:
`edquota --user $(whoami)`
- Edit quota of a specific user:
`sudo edquota --user {{username}}`
- Edit quota for a group:
`sudo edquota --group {{group}}`
- Restrict operations to a given filesystem (by default edquota operates on all filesystems with quotas):
`sudo edquota --file-system {{filesystem}}`
- Edit the default grace period:
`sudo edquota -t`
- Duplicate a quota to other users:
`sudo edquota -p {{reference_user}} {{destination_user1}} {{destination_user2}}`