码迷,mamicode.com
首页 > 系统相关 > 详细

Linux centos 下安装iftop端口流量监控工具(通过编译方式安装)

时间:2016-06-19 18:42:56      阅读:714      评论:0      收藏:0      [点我收藏+]

标签:linux iftop编译安装

    iftop可以监控服务器端口的实时流量,所以下面通过编译安装将iftop安装到服务器上。

    安装步骤如下:


    1,下载源码包iftop-1.0pre4.tar.gz:

    #wget http://www.ex-parrot.com/~pdw/iftop/download/iftop-1.0pre4.tar.gz

    

    2,进入到源码包所在目录/usr/soft/,解压:

    #tar -xvf iftop-1.0pre4.tar.gz 

    

    3,进入解压后的iftop目录:

    #cd iftop-1.0pre4

    #ls        //查看目录内容

技术分享

    4,开始进行编译安装:

    1)将iftop安装到/usr/soft/iftop/目录中:

    [root@CentOS iftop-1.0pre4]# ./configure --prefix=/usr/soft/iftop/


    2)通过#make 和 #make install,进行后续安装。

    技术分享

    3)安装完成,可以通过#iftop命令(可带相关参数)进行流量监控。

技术分享



编译安装:

    前提:在存在编译安装环境(开发工具:gcc ;perl;python;glibc;gtk;make ;automake)。        1)大多以tar.gz 和tar.bz2打包软件,大多是通过 

    #./configure 

    #make 

    #make install 来安装。


    2)有的软件是直接

    #make;

    #make install 来安装。


    3)我们可以通过

    #./configure --help 来查看配置软件的功能。


    4)大多软件是提供./configure 配置软件的功能的;少数的也没有,如果没有的就不用

    ./configure ,直接make;make install 就行了。


    5)./configure 比较重要的一个参数是 --prefix ,用--prefix 参数,我们可以指定软件安装目录;当我们不需要这个软件时,直接删除软件的目录就行了。

    #./configure --prefix=/usr/soft/iftop  //指定安装目录


关于编译安装:


另参考

http://www.vpser.net/manage/iftop.html


http://www.jb51.net/os/RedHat/1125.html

    




Linux centos 下安装iftop端口流量监控工具(通过编译方式安装)

标签:linux iftop编译安装

原文地址:http://chidongting.blog.51cto.com/1903900/1790745

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!