感谢支持
我们一直在努力

Linux df 监控磁盘空闲空间

df 监控磁盘空闲空间

环境:


  1. [Oracle@simpleit shell]$ uname -a  

  2. Linux simpleit.domain.cn 2.6.18-194.el5 #1 SMP Fri Apr 2 14:58:35 EDT 2010 i686 athlon i386 GNU/Linux  

  3. [oracle@simpleit shell]$ cat /etc/RedHat-release  

  4. CentOS release 5.5 (Final)  

 


  1. [oracle@simpleit shell]$ df -k  

  2. Filesystem           1K-blocks      Used Available Use% Mounted on  

  3. /dev/sda2              5952284   4627568   1017476  82% /  

  4. /dev/sda1               101086     29931     65936  32% /boot  

  5. tmpfs                   505360         0    505360   0% /dev/shm  

  6. [oracle@simpleit shell]$ df -kl  

  7. Filesystem           1K-blocks      Used Available Use% Mounted on  

  8. /dev/sda2              5952284   4627568   1017476  82% /  

  9. /dev/sda1               101086     29931     65936  32% /boot  

  10. tmpfs                   505360         0    505360   0% /dev/shm  

  11.   

  12. df displays the amount of disk space  

  13.        available on the file system containing each file name argument.  If no file name is  given,  

  14.        the  space available on all currently mounted file systems is shown.  Disk space is shown in  

  15.        1K blocks by default, unless the environment variable POSIXLY_CORRECT is set, in which  case  

  16.        512-byte blocks are used.  

  17.   

  18. -k     like –block-size=1K  

  19.   

  20. -l, –local  

  21.       limit listing to local file systems  
一个小脚本:


  1. ####################################################################  

  2. ##    disk_free_space.sh       ##  

  3. ##    created by Laughing      ##  

  4. ##       2012-01-06            ##  

  5. ####################################################################  

  6. #!/bin/bash  

  7.   

  8. df -kl | grep -iv Filesystem | awk ‘{ print $6″, “$5}’ |  

  9. while   

  10. read LINE;  

  11. do  

  12. ITEM=`echo $LINE | awk -F ‘,’ ‘{ print $2 }’ | awk -F ‘%’ ‘{ print $1 }’`  

  13. if [ $ITEM -ge 90 ]  

  14. then  

  15.     echo “`date` – ${LINE} space used on `hostname` ”  

  16. fi  

  17. done  

 


  1. [oracle@simpleit shell]$ ./disk_free_space.sh  

  2. Sun Dec 18 16:10:25 CST 2011 – /, 82% space used on simpleit.domain.cn  

  3. Sun Dec 18 16:10:25 CST 2011 – /boot, 32% space used on simpleit.domain.cn  

赞(0) 打赏
转载请注明出处:服务器评测 » Linux df 监控磁盘空闲空间
分享到: 更多 (0)

听说打赏我的人,都进福布斯排行榜啦!

支付宝扫一扫打赏

微信扫一扫打赏