Ubuntu有一个软件包叫ubuntu-calendar。安装后,软件包会每月随系统升级一起下载桌面壁纸图像。以下是Ubuntu mrtg交换分区实现脚本。
Ubuntu mrtg交换分区
Ubuntu mrtg切换到超级用户:
sudo -sH
Ubuntu mrtg建立交换分区脚本:
- mkdir /opt/mrtg
- vim /opt/mrtg/mrtg.swap
- #!/bin/bash
- # This script to monitor the swap usage.
- totalswap=`/usr/bin/free |grep Swap |awk '{print $2}'`
- usedswap=`/usr/bin/free |grep Swap |awk '{print $3}'`
- echo "$totalswap"
- echo "$usedswap"
Ubuntu mrtg使脚本可以执行:
chmod +755 /opt/mrtg/mrtg.swap
修改 /etc/mrtg.cfg 在文件***加入
- Target[swap]: `/opt/mrtg/mrtg.swap`
- MaxBytes[swap]: 2048000
- Title[swap]:Memory State of Server
- ShortLegend[swap]: &
- kmg[swap]:kB,MB
- kilo[swap]:1024
- YLegend[swap]: Swap Usage
- Legend1[swap]: Total Swap
- Legend2[swap]: Used Swap
- LegendI[swap]: Total Swap
- LegendO[swap]: Used Swap
- Options[swap]: growright,gauge,nopercent
- PageTop[swap]:<H1>Swap</H1>
重新生成索引页面:
indexmaker /etc/mrtg.cfg > /var/www/mrtg/index.html
访问:
http://localhost/mrtg/
【编辑推荐】
- 解决Ubuntu和Fedora的“民事纠纷”
- Ubuntu不得不分享的24条使用经验
- 在Ubuntu 10.04上安装私有驱动
- Ubuntu家族成员 Lubuntu轻量级桌面环境体验
- Ubuntu小弟Jolicloud整合云计算的安装实践