AI智能
改变未来

使用shell脚本查询主机cpu、内存、硬盘使用情况(显示时间,IP,使用情况等)。

cpu:

代码:

#!/bin/bash
if [

uname

!= “Linux” ];then
echo “操作系统不是Linux.”
exit 1
fi
which vmstat &>/dev/null
if [ $? -ne 0 ];then
echo “vmstat没装”
exit 1
fi

cpu_us=

vmstat | awk \'{print $13}\' | sed -n \'$p\'

cpu_sy=

vmstat | awk \'{print $14}\' | sed -n \'$p\'

cpu_id=

vmstat | awk \'{print $15}\' | sed -n \'$p\'

cpu_wa=

vmstat | awk \'{print $16}\' | sed -n \'$p\'

cpu_sum=((((((cpu_us+$cpu_sy))
cpu_info()
{
echo “CPU_Sum : cpusumcpu_sum% ( CPU_Use:cpus​um{cpu_us}% , CPU_System:${cpu_sy}% )”
echo “CPU_Idle : ${cpu_id}%”
echo “CPU_Wait : ${cpu_wa}”
}
if [ cpusum−ge0];thendate=cpu_sum -ge 0 ];thendate=cpus​um−ge0];thendate=(date)
ip=

ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v inet6|awk \'{print $2}\'|tr -d \"ad dr:\"

echo “CPU占用率为:cpusum日期:cpu_sum 日期:cpus​um日期:date 主机IP: $ip” >>c.txt
内存:

代码:
#!/bin/bash
total=

free -m | grep Mem | awk \'{print $2}\'

use=

free -m | grep Mem | awk \'{print $3}\'

free=

free -m | grep Mem | awk \'{print $4}\'

cache=

free -m | grep Mem | awk \'{print $6}\'

date=$(date)
ip=

ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v inet6|awk \'{print $2}\'|tr -d \"ad dr:\"

if [ free−lt1024];thenecho\”时间:free -lt 1024 ];thenecho \”时间:free−lt1024];thenecho\”时间:date,主机IP:ip,内存使用情况:总内存:ip,内存使用情况:总内存:ip,内存使用情况:总内存:[total]m,使用内存:[use]m,缓冲区使用内存:[use]m,缓冲区使用内存:[use]m,缓冲区使用内存:[cache]m空闲内存:$[free]m\” >>b.txt
fi
硬盘:

#!/bin/bash
Date=$(date)
ip=

ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v inet6|awk \'{print $2}\'|tr -d \"ad dr:\"

Total=

fdisk -l | grep \"Disk /dev/sd[a-z]\" |awk \'{print $2$3\"GB\"}\' |sed \'s/:/=/\' |xargs echo -n |sed \'s/[ ]/,/g\'

Disk_Use=

df -h |awk \'{print $1\"=\"$5}\' | sed \'1d\' | sed \'s/%//g\'

for i in $Disk_Use
do
A=

echo $i |awk -F\'=\' \'{print $2}\'

if [ $A -gt 8 ];then
echo -e “日期 : $Date \\nIP : $ip \\n总量 : $Total \\n部分使用 : ${i}%” >> a.txt
fi
done

shell初学,费了大半天劲,百度了半天,再加上上课的那点笔记慢慢憋出来,哎 cpu和内存的熟悉了,硬盘的还是有些不懂,还得努力啊。

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » 使用shell脚本查询主机cpu、内存、硬盘使用情况(显示时间,IP,使用情况等)。