之前有寫過,但一些沒有組件的無法安裝,這裡寫下安裝組件的
安裝所需組件
yum list | grep libp
yum install libp*
wget ftp://ftp.lmd.ens.fr/pub/devil/devel/sources/1.2/libpcap-0.9.8.tar.gz
安裝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
安裝完後使用命令
iftop -i eth0 -n 查看eth0的流量
退出按q
卸載:make clean iftop-0.17
Linux下監控網卡流量的軟件iftop
官網上說使用iftop需要libpcap和libcurses這兩個包。
用命令查找了一下
# rpm -qa | grep libpcap
libpcap-0.9.4-8.1
只找到了這個,缺少libpcap-devel-0.9.4就繼續安裝了。
出錯了:configure: error: can’t find pcap.h You’re not going to get very far without libpcap.
我用的是Redhat EL5.3系統,從安裝盤裡找了libpcap的rpm包,安裝後再編譯,安裝成功。
# rpm -ivh libpcap-devel-0.9.4-14.el5.i386.rpm
Libcurses這個包沒裝過,因為安裝時也沒出錯,所以暫時就沒裝!
安裝iftop:
# wget http://www.ex-parrot.com/%7Epdw/iftop/download/iftop-0.17.tar.gz
# tar zxvf iftop-0.17.tar.gz
# cd iftop-0.17
# ./configure –prefix=/usr/local/iftop && make && make install
# /usr/local/iftop/sbin/iftop //默認監測eth0網卡流量