quota support

nebukazar

Verified User
Joined
Sep 28, 2003
Messages
130
Hello,

Quota is enabled on my system :
cat /etc/fstab
LABEL=/ / ext3 defaults,usrquota,grpquota 1 1
LABEL=/boot /boot ext3 defaults,usrquota 1 2

When I'm trying to run /usr/local/directadmin/scripts/fstab.sh
I got these messages :
Checking quotas...
quotaon: using //aquota.group on /dev/hda2 [/]: Device or resource busy
quotaon: using //aquota.user on /dev/hda2 [/]: Device or resource busy
quotaon: using /boot/aquota.user on /dev/hda1 [/boot]: Device or resource busy

I tried to log in with a created user and tried to copies files to be over the quota and it seems quota isn't working fine on the account.

account : agora
du -h : 213M
allowed space : 100M

Any help ?
 
Hello,

That just means that the quotas are already working happily. Just to be safe, I would recommend that you run:
Code:
/sbin/quotaoff -a
/sbin/quotacheck -cavugm
/sbin/quotaon -a

John
 
Back
Top