Quota

rix

Verified User
Joined
Sep 22, 2003
Messages
16
I'm having problem with setting users with quota, it gives me the following error. I've read other posts on quota and i also did /usr/local/directadmin/scripts/fstab.sh and still gives me these error.

Error with system Quotas
setquota: Not all specified mountpoints are using quota.

here is my fstab setting

/dev/hdc1 /home ext3 defaults,usrquota,grpquota 0 2
LABEL=/ / xfs defaults 1 1
none /dev/pts devpts gid=5,mode=620 0 0
none /proc proc defaults 0 0
none /dev/shm tmpfs defaults 0 0
/dev/hda2 swap swap defaults 0 0
/dev/hdd1 /backup ext3 defaults 0 2

Another question is, can i convert xfs to ext3 ?
 
Hello,

Perhaps your kernel isn't compiled with quota support. Also check for the existance of the /home/aquota.user file.

Try running:
Code:
/sbin/quotaoff -a
/sbin/quotacheck -cavugm
/sbin/quotaon -a
It might tell you if quotas are compiled into your kernel. If they arn't you'd have to a) compile the kernel with quotas or b) install reinstall RedHat with quota support

John
 
Back
Top