The quotaoff command is used to disable disk quotas on a file system. It removes the "quota.user" and "quota.group" files that store information about quotas for individual users and groups.
The syntax of the quotaoff command is: quotaoff [OPTIONS].
Common options include:
# quotaoff -a ←Disable quotas on all file systems # quotaoff -g my_group ←Disable quotas on the file system for the specified group "my_group" |