1、检查磁盘使用率,如果分区利用率大于80%(此处实验以15%)就执行警报
echo “The disk check script will be starting”
sleep 0.5
disk_used=`df |grep “^/dev/sd”|tr -s ” ” %|cut -d% -f5|sort -nr|head -n1`
warning_label=15
[ $disk_used -ge $warning_label ] && wall “Disk have used $disk_used%, will be full,please attention and do someting!”
sleep 0.5
本文来自投稿,不代表Linux运维部落立场,如若转载,请注明出处:http://www.178linux.com/97721