Why not just use rpm to remove your current install of quota and re-compile it from source, unless it is a kernel bug it should either run stable or die on compile? There is a perl Quota module BTW but that is just an interface onto quota AFAICT.
You might like this:
There are four major species of Unix sysad
- The TECHNICAL THUG. Usually a systems programmer who has been forced
into system administration; writes scripts in a polyglot of the Bourne shell,
sed, C, awk, perl, and APL.
- The ADMINISTRATIVE FASCIST. Usually a retentive drone (or rarely, a
harridan ex-secretary) who has been forced into system administration.
- The MANIAC. Usually an aging cracker who discovered that neither the
Mossad nor Cuba are willing to pay a living wage for computer
espionage. Fell into system administration; occasionally approaches
major competitors with indesp schemes.
- The IDIOT. Usually a cretin, morpohodite, or old COBOL programmer
selected to be the system administrator by a committee of cretins,
morphodites, and old COBOL programmers.
How To Identify Your System Administrator (a field guide)
SITUATION: Low disk space
TECHNICAL THUG: Writes a suite of scripts to monitor disk usage,
maintain a database of historic disk usage, predict future disk
usage via least squares regression analysis, identify users
who are more than a standard deviation over the mean, and send mail to
the offending parties. Places script in cron. Disk usage does not
change, since disk-hogs, by nature, either ignore
script-generated mail, or file it away in triplicate.
ADMINISTRATIVE FASCIST: Puts disk usage policy in motd. Uses disk
quotas. Allows no exceptions, thus crippling development work.
Locks accounts that go over quota.
MANIAC:
# cd /home
# rm -rf `du -s * | sort -rn | head -1 | awk '{print $2}'`;
IDIOT:
# cd /home
# cat `du -s * | sort -rn | head -1 | awk '{ printf "%s/*\n",
+$2}'` | compress
More at http://www.gnu.org/fun/jokes/know.your.sysadmin.html
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.