linux ubuntu nethogs安装与介绍
安装nethogs:
apt-get -y install ncurses*
apt-get -y install libpcap-dev libncurses5-dev
wget -c https://github.com/raboof/nethogs/archive/v0.8.1.tar.gz
tar xvf v0.8.1.tar.gz
cd nethogs-0.8.1
make && make install
遇到的问题一:之前安装的0.8.0版本,有如下问题:
creating socket failed while establishing local IP - are you root?
不用找其他方法了,安装0.8.1吧 wget -c https://github.com/raboof/nethogs/archive/v0.8.1.tar.gz
NetHogs提供交互式控制指令:
m : Cycle between display modes (kb/s, kb, b, mb) 切换网速显示单位
r : Sort by received. 按接收流量排序
s : Sort by sent. 按发送流量排序
q : Quit and return to the shell prompt. 退出NetHogs命令工具
NetHogs 命令行参数
常用的参数:
-d delay for refresh rate. 数据刷新时间 如nethogs -d 1 就是每秒刷新一次
-h display available commands usage. 显示命名帮助、使用信息
-p sniff in promiscious mode (not recommended).
-t tracemode.
-V prints Version info.
演示例子:
#5秒刷新一次数据
nethogs -d 5
#监控网卡eth0数据
nethogs eth0
#同时监视eth0和eth1接口
nethogs eth0 eth1
#将监控日志写入日志文件
nethogs >>test.log
要查看这台设备上的总体带宽情况,可以使用nload、iftop、ifstat工具。 要查看这台设备上的每个进程连接的带宽情况,可以使用nethogs工具。
nload的安装请参看另一篇博文: http://blog.163.com/ldw21cn@126/blog/static/24295648201351701232699/