我想在bash脚本中显示服务器负载,磁盘空间,使用情况和内存使用情况.
但是,当我尝试
echo "Memory usage:"
memory_usage=$free -m | awk 'NR==2{printf "Memory Usage: %s/%sMB (%.2f%%)\n", $3,$2,$3*100/$2 }'
echo $memory_usage
这个并使用./test.sh运行脚本它给了我错误:
free command not found
最佳答案 对于debian / ubuntu.赶紧跑
apt-get install procps
为了centos
yum install procps
procps包括free,top等linux base commond