如何查看linux系统版本,以及性能测试监控工具:nmon安装

1、查看linux系统环境版本

cat /proc/version

 cat /etc/redhat-release

或 cat /etc/*-release

2、打开nmon官网下载地址

官网地址:http://nmon.sourceforge.net/pmwiki.php?n=Site.Download

nmon含义:nmon for Linux - nmon is short for Nigel's performance Monitor for Linux

下载对应操作系统和对应操作系统位数的tar包

3、安装nmon

     1、新建目录nmon

           命令:mkdir  nmon

     2、将下载的tar包传到nmon目录下并解压 

           命令:tar -xvf 包名

     3、解压后,重命名对应环境的nmon文件为nmon,方便执行命令

           命令:mv nmon_x86_64_rhel6 nmon

     4、若没有执行权限,添加执行权限

            命令:chmod +x nmon

       5、运行

           命令: ./nmon

        6、运行页面

     

注意:执行的nmon操作系统或者操作系统位数不对时,会报如下错误,找到正确的运行即可。

-bash: ./nmon_power_64le_ubuntu14: cannot execute binary file
 

发布了31 篇原创文章 · 获赞 16 · 访问量 7万+

猜你喜欢

转载自blog.csdn.net/SwTesting/article/details/84548729