linux下安装nmon监控工具
1.首先下载压缩包
wget http://sourceforge.net/projects/nmon/files/download/nmon_x86_12a.zip/download
2.解压并修改权限
chmod +x nmon_x86_rhel52 mv nmon_x86_rhel52 /usr/bin/nmon
3.启动可能会报如下错误,安装相应包即可;如果没报,就表示安装成功,可直接使用
错误1:
error while loading shared libraries: libncurses.so.5: cannot open shared object file: No such file or directory
解决:
yum install ncurses-devel.i686 -y
错误2:
我们在执行nmon命令后,退出来时,可能会报这个错:
sh: /usr/bin/lsb_release: No such file or directory
解决:
yum install redhat-lsb -y
这个命令可能会安装大概55个包,所以注意一下。
到这里,就安装成功了,可以使用了。