linux下安装iftop的简单步骤

发布时间:2019-12-03编辑:脚本学堂
本文介绍下,在linux下,安装iftop流量监控工具的简单方法,有需要的朋友参考下。

方法1,编译安装
采用编译安装可以到iftop官网下载最新的源码包。
安装前需要已经安装好基本的编译所需的环境,比如make、gcc、autoconf等。

安装iftop还需要安装libpcap和libcurses。

centos上安装所需依赖包:

复制代码 代码示例:
yum install flex byacc libpcap ncur

Debian上安装所需依赖包:
 

复制代码 代码示例:
apt-get install flex byacc  libpcap0.8 libncurses5

下载iftop
 

复制代码 代码示例:
wget http://www.ex-parrot.com/pdw/iftop/download/iftop-0.17.tar.gz
tar zxvf iftop-0.17.tar.gz
cd iftop-0.17
./configure
make && make install

方法2,yum与apt-get安装。
CentOS系统,运行:
 

复制代码 代码示例:
yum install flex byacc  libpcap ncurses ncurses-devel
wget ftp://fr2.rpmfind.net/linux/dag/redhat/el5/en/i386/dag/RPMS/iftop-0.17-1.el5.rf.i386.rpm
rpm -ivh iftop-0.17-1.el5.rf.i386.rpm

Debian系统,运行:
 

复制代码 代码示例:
apt-get install iftop