I want to install Dovecot on Ubuntu 12.04 LTS, and it recommends that we place the control files into a partition which will not be limited by the filesystem quota.
If I create an ext4 partition with 2 gigs, how do I remove the quota on that partition? I know the partitions are defined in /etc/fstab, and I think usrquota and grpquota have to be explicitly set to disabled.
But I am unsure what the entire line should look like.
Is it something like:
/dev/hda2 / ext4 defaults,usrquota,grpquota 1 0 0
On the other hand, I found something called quotaon and quotaoff. Would this be used instead of fstab? Is there a difference?
quotaoffis not an option in either of those. But I do seegrpquota|noquota|quota|usrquotain the DEPENDENT option, however it also says this:These options are accepted but ignored.– tabx Mar 01 '13 at 19:50However, quota utilities may react to such strings in /etc/fstab.) " So mount will ignore these strings, but quota uses them. – Panther Mar 01 '13 at 19:54noquota? What would be the benefit of using this command rather than manually specifying it in /etc/fstab? – tabx Mar 01 '13 at 19:58