nerdexam
Linux_Foundation

LFCS · Question #715

How can you turn off the group quota in /pub?

The correct answer is B. quotaoff-gv/pub. To disable group quotas for the /pub filesystem, the quotaoff command is used with the -g option for group quotas and the specified mount point.

Submitted by fernanda_arg· Apr 18, 2026Storage Management

Question

How can you turn off the group quota in /pub?

Options

  • Aquotaoff/pub
  • Bquotaoff-gv/pub
  • Cquotadown /pub
  • Drm/pub/quota.group

How the community answered

(22 responses)
  • B
    91% (20)
  • C
    5% (1)
  • D
    5% (1)

Why each option

To disable group quotas for the `/pub` filesystem, the `quotaoff` command is used with the `-g` option for group quotas and the specified mount point.

Aquotaoff/pub

`quotaoff/pub` is missing the necessary flag to specify whether user or group quota (or both) should be turned off.

Bquotaoff-gv/pubCorrect

The `quotaoff` command is used to disable disk quotas on a filesystem. The `-g` option specifically targets group quotas, and `/pub` specifies the mount point where the quota should be turned off.

Cquotadown /pub

`quotadown` is not a standard Linux command for managing quotas.

Drm/pub/quota.group

Deleting the quota file with `rm /pub/quota.group` would remove the quota data but doesn't gracefully turn off the quota subsystem, which could lead to errors or inconsistencies.

Concept tested: Linux disk quota management (quotaoff)

Source: https://man7.org/linux/man-pages/man8/quotaoff.8.html

Topics

#Disk Quotas#Group Quotas#quotaoff command#File System Management

Community Discussion

No community discussion yet for this question.

Full LFCS Practice