Question
How to disable quotas on an ext3 or ext4 filesystem?
Answer
Sometimes quotas will be enabled on a backup partition, which is not recommended due to potential performance issues.
-
You can confirm if quotas are enabled by checking the
/etc/fstabfile:# grep quota /etc/fstab
UUID=08ec4d96-034e-4c3e-b199-9f3753de7171 / ext4 defaults,usrquota,grpquota 1 1Note: In the above, the output showing
usrquotaandgrpquotaindicates quotas are enabled. - To disable quotas for a partition, open the
/etc/fstabfile using your preferred command-line file editing tool, such asviornanofor example. - Remove the
usrquotaandgrpquotaentries. - Save and close the file.
-
Remount the partition:
# mount -o remount $MOUNTPOINT
Note: Replace
$MOUNTPOINTwith the partition you are remounting.
Comments
0 comments
Article is closed for comments.