great post fosky.
I've been reading up on quotas for about 2 days trying to figure out what I have to do before I do it w/ RH7.2.
Here is the skinny on my configureation and what worked for me (after following fosky's post):
Read:
http://www.tldp.org/HOWTO/mini/Quota.html#toc5
Everyone refers people to this page, but it does not seem to target Red Hat users.
Read:
http://www.tldp.org/LDP/solrhe/Secur...1.3/quota.html
very good documentation - specific to Red Hat
So I tried that, but had some issues. Bottom line, here are the summarized steps:
//
// RedHat 7.2 - 2.4.7-10smb
// no kernel upgrade required
// no patch required
// hard drives mounted using ext3
// ext3 & quotas should "work", I saw some posts regarding
// issues, we'll see....
//
// basic flow following doc #2
//make your changes by adding the
//usrquota,grpquota labels
vim /etc/fstab
touch /home/aquota.group
touch /home/aquota.user
touch /home/quota.group
touch /home/quota.user
chmod 660 /home/*quota.*
//
// now fosky's advice
// additional commands because 2 different mounts
// hdbx & hdby
// and because of groups & users quotas
/sbin/quotacheck -vum /home
/sbin/quotacheck -gvm /home
/sbin/quotacheck -uvm /usr
/sbin/quotacheck -gvm /usr
// now reboot
//all should work now.
quota -g staff
quota -u smegol
hope that helps someone.
-bock out