- 論壇徽章:
- 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] 您發(fā)表的帖子被評分
來自:
metor78
到:
susbin
時間: 2006-10-4 09:06
內(nèi)容: 這是由論壇系統(tǒng)自動發(fā)送的通知短消息。
以下您所發(fā)表的帖子被
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 編輯 ]
發(fā)表時間: 2006-9-27 04:30
所在論壇:
Solaris
所在主題:
[少兒不宜] 檢查硬盤占用空間,大于90% 就送ALERT Email 的腳本
評分分數(shù): 積分 +5
操作理由: 精品文章
本文來自ChinaUnix博客,如果查看原文請點:http://blog.chinaunix.net/u/25893/showart_195111.html |
|