Displaying 3 results from an estimated 3 matches for "avug".
Did you mean:
aug
2002 Mar 16
0
Re:Re: RedHat 7.2 quota problem
After your done editing the fstab, rc.local, touch, chmod and reboot you should uses the following commands at the shell prompt
quotacheck -avug /dev/hdaX # X would be the mounted filesystem
quotaon -avug /dev/hdaX
Quotas should be up and running after that. As for the quotacheck -c, Hog wash. I never had to use it with 7.2
2008 Oct 29
1
quota for ocfs2 do not warn a exceed for block soft-limit sometimes
...the soft-limit of space usage was
exceeded.following are the steps to reproduce this issue:
1.mkfs.ocfs2 --fs-features=usrquota,grpquota ... /dev/sdc5
2.mount -t ocfs2 -o usrquota,grpquota /dev/sdc5 /quota
3.useradd -m quotauser
4.setquota -u quotauser 1024 2048 10 20 -a /dev/sdc5
5.quotaon -avug
6.su - quotauser; cd /quota
7.
dd if=/dev/zero of=./testfile1 bs=1024 count=1024
1024+0 records in
1024+0 records out
1048576 bytes (1.0 MB) copied, 0.00825239 seconds, 127 MB/s
dd if=/dev/zero of=./testfile2bs=1024 count=10
sdc5: warning, user block quota exceeded.
10+0 records in
10+0 records...
2008 Oct 24
19
[PATCH 00/00] Implement quotas for OCFS2 (version 2)
Hello,
the following patch series implements quotas for OCFS2. The patch
series is based on:
git://git.kernel.org/pub/scm/linux/kernel/git/mfasheh/ocfs2.git linux-next
I've adressed Joel's comments, also node recovery is now fully working
and I've fixed a few issues I found during my testing. So I'm currently
not aware of any bugs. Please review, test, comment. Thanks.