in reply to Re: Re: Monitoring disk usage
in thread Monitoring disk usage
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:
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
cheers
tachyon
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
[OT] Re^4: Monitoring disk usage
by Tomte (Priest) on Mar 05, 2004 at 17:21 UTC | |
by tachyon (Chancellor) on Mar 05, 2004 at 22:33 UTC |