- 论坛徽章:
- 0
|
It was posted on
[email=Solaris@CU]Solaris@CU[/email]
at 092606 with the name above, but I had to change it to this one later:
[少儿不宜] 检查硬盘占用空间,大于90% 就送ALERT Email
For the reason of 少儿不宜, it was deleted by me with the help of 版主 Metro78
one day before the Moon Festival.
Thanks for two CU users,
jhzhong
who kept it, and
xxilyhonker
who posted it at
[email=HP-UX@CU]HP-UX@CU[/email]
, this script is back to CU again. Hope it could help more poeple in the future.
[ChinaUnix] 您发表的帖子被评分
来自:
metor78
到:
susbin
时间: 2006-10-4 09:06
内容: 这是由论坛系统自动发送的通知短消息。
以下您所发表的帖子被
metor78
评分。
1. Make sure you can send out email from the host.
2. Add a line into your crontab like this one:
59 23 * * * /usr/local/scripts/chk.disk
chk.disk
---------------------------------------
#!/bin/ksh
# David Perry,
http://www.computing.net/solaris/wwwboard/forum/3543.html
# Modified by
susbin@chinaunix.net
#
mail_client=/usr/bin/mailx
adm_email_1=you@chinaunix.net
ALERT=90
#ALERT=40
set `df -k | sed -e 's/%//g' | awk '/^\/dev/ { printf("%s %s\n", $5, $6) }'`
while [ $# -ge 2 ] ; do
CAPACITY=$1
FS=$2
shift 2
if [ $CAPACITY -gt $ALERT ] ; then
echo "$FS is ${CAPACITY}% full!" | $mail_client -s "`uname -n` Space Alert!" $adm_email_1
# echo "$FS is ${CAPACITY}% full."
fi
done
[ 本帖最后由 susbin 于 2006-9-30 18:51 编辑 ]
发表时间: 2006-9-27 04:30
所在论坛:
Solaris
所在主题:
[少儿不宜] 检查硬盘占用空间,大于90% 就送ALERT Email 的脚本
评分分数: 积分 +5
操作理由: 精品文章
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/25893/showart_195111.html |
|