博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS6.5下使用NetHogs监控进程网络使用情况
阅读量:6616 次
发布时间:2019-06-24

本文共 13632 字,大约阅读时间需要 45 分钟。

Nethogs 是一个终端下的网络流量监控工具,它的特别之处在于能够显示每一个进程的带宽占用情况,这样能够更直观获取网络使用情况。它支持 IPv4 和 IPv6 协议、支持本地网卡及 PPP 链接。

下载:

使用wget下载:

wget http://sourceforge.net/projects/nethogs/files/nethogs/0.8/nethogs-0.8.0.tar.gz/download

安装:

安装之前须要先 yum install ncurses*

[root@localhost Desktop]# yum install ncurses*Loaded plugins: fastestmirror, refresh-packagekit, securityLoading mirror speeds from cached hostfile * base: mirrors.skyshe.cn * extras: mirrors.skyshe.cn * updates: mirrors.skyshe.cnSetting up Install ProcessPackage ncurses-5.7-3.20090208.el6.x86_64 already installed and latest versionPackage ncurses-libs-5.7-3.20090208.el6.x86_64 already installed and latest versionPackage ncurses-base-5.7-3.20090208.el6.x86_64 already installed and latest versionResolving Dependencies--> Running transaction check---> Package ncurses-devel.x86_64 0:5.7-3.20090208.el6 will be installed---> Package ncurses-static.x86_64 0:5.7-3.20090208.el6 will be installed---> Package ncurses-term.x86_64 0:5.7-3.20090208.el6 will be installed--> Finished Dependency ResolutionDependencies Resolved======================================================================================================================================================================== Package                                    Arch                               Version                                           Repository                        Size========================================================================================================================================================================Installing: ncurses-devel                              x86_64                             5.7-3.20090208.el6                                base                             642 k ncurses-static                             x86_64                             5.7-3.20090208.el6                                base                             546 k ncurses-term                               x86_64                             5.7-3.20090208.el6                                base                             547 kTransaction Summary========================================================================================================================================================================Install       3 Package(s)Total download size: 1.7 MInstalled size: 6.8 MIs this ok [y/N]: yDownloading Packages:(1/3): ncurses-devel-5.7-3.20090208.el6.x86_64.rpm                                                                                               | 642 kB     00:01     (2/3): ncurses-static-5.7-3.20090208.el6.x86_64.rpm                                                                                              | 546 kB     00:00     (3/3): ncurses-term-5.7-3.20090208.el6.x86_64.rpm                                                                                                | 547 kB     00:02     ------------------------------------------------------------------------------------------------------------------------------------------------------------------------Total                                                                                                                                   284 kB/s | 1.7 MB     00:06     Running rpm_check_debugRunning Transaction TestTransaction Test SucceededRunning Transaction  Installing : ncurses-devel-5.7-3.20090208.el6.x86_64                                                                                                              1/3   Installing : ncurses-static-5.7-3.20090208.el6.x86_64                                                                                                             2/3   Installing : ncurses-term-5.7-3.20090208.el6.x86_64                                                                                                               3/3   Verifying  : ncurses-term-5.7-3.20090208.el6.x86_64                                                                                                               1/3   Verifying  : ncurses-static-5.7-3.20090208.el6.x86_64                                                                                                             2/3   Verifying  : ncurses-devel-5.7-3.20090208.el6.x86_64                                                                                                              3/3 Installed:  ncurses-devel.x86_64 0:5.7-3.20090208.el6              ncurses-static.x86_64 0:5.7-3.20090208.el6              ncurses-term.x86_64 0:5.7-3.20090208.el6             Complete!
解压文件:

tar -zxvf nethogs-0.8.0.tar.gz

切换文件夹:

cd nethogs

编译安装:

make && make install

make出错了:

[root@localhost nethogs]# make && make installcc -g -Wall -Wextra -c decpcap.cdecpcap.c:7:18: error: pcap.h: No such file or directoryIn file included from decpcap.c:8:decpcap.h:34: error: expected specifier-qualifier-list before ‘pcap_t’decpcap.c:14: error: expected ‘)’ before ‘*’ tokendecpcap.c: In function ‘dp_open_offline’:decpcap.c:48: error: ‘pcap_t’ undeclared (first use in this function)decpcap.c:48: error: (Each undeclared identifier is reported only oncedecpcap.c:48: error: for each function it appears in.)decpcap.c:48: error: ‘temp’ undeclared (first use in this function)decpcap.c:48: warning: implicit declaration of function ‘pcap_open_offline’decpcap.c:55: warning: implicit declaration of function ‘dp_fillhandle’decpcap.c: In function ‘dp_open_live’:decpcap.c:60: error: ‘pcap_t’ undeclared (first use in this function)decpcap.c:60: error: ‘temp’ undeclared (first use in this function)decpcap.c:60: warning: implicit declaration of function ‘pcap_open_live’decpcap.c: In function ‘dp_addcb’:decpcap.c:74: error: ‘struct dp_handle’ has no member named ‘callback’decpcap.c: In function ‘dp_parse_tcp’:decpcap.c:84: error: ‘struct dp_handle’ has no member named ‘callback’decpcap.c:86: error: ‘struct dp_handle’ has no member named ‘callback’decpcap.c:87: error: ‘struct dp_handle’ has no member named ‘userdata’decpcap.c: In function ‘dp_parse_ip’:decpcap.c:99: error: dereferencing pointer to incomplete typedecpcap.c:103: error: ‘struct dp_handle’ has no member named ‘callback’decpcap.c:105: error: ‘struct dp_handle’ has no member named ‘callback’decpcap.c:106: error: ‘struct dp_handle’ has no member named ‘userdata’decpcap.c: In function ‘dp_parse_ip6’:decpcap.c:126: error: ‘struct dp_handle’ has no member named ‘callback’decpcap.c:128: error: ‘struct dp_handle’ has no member named ‘callback’decpcap.c:129: error: ‘struct dp_handle’ has no member named ‘userdata’decpcap.c: In function ‘dp_parse_ethernet’:decpcap.c:150: error: ‘struct dp_handle’ has no member named ‘callback’decpcap.c:152: error: ‘struct dp_handle’ has no member named ‘callback’decpcap.c:153: error: ‘struct dp_handle’ has no member named ‘userdata’decpcap.c: In function ‘dp_parse_ppp’:decpcap.c:196: error: ‘struct dp_handle’ has no member named ‘callback’decpcap.c:198: error: ‘struct dp_handle’ has no member named ‘callback’decpcap.c:199: error: ‘struct dp_handle’ has no member named ‘userdata’decpcap.c: In function ‘dp_parse_linux_cooked’:decpcap.c:238: error: ‘struct dp_handle’ has no member named ‘callback’decpcap.c:240: error: ‘struct dp_handle’ has no member named ‘callback’decpcap.c:241: error: ‘struct dp_handle’ has no member named ‘userdata’decpcap.c: In function ‘dp_pcap_callback’:decpcap.c:270: error: ‘struct dp_handle’ has no member named ‘userdata_size’decpcap.c:271: error: ‘struct dp_handle’ has no member named ‘userdata’decpcap.c:271: error: ‘struct dp_handle’ has no member named ‘userdata_size’decpcap.c:273: error: ‘struct dp_handle’ has no member named ‘linktype’decpcap.c:274: error: ‘DLT_EN10MB’ undeclared (first use in this function)decpcap.c:277: error: ‘DLT_PPP’ undeclared (first use in this function)decpcap.c:280: error: ‘DLT_LINUX_SLL’ undeclared (first use in this function)decpcap.c:283: error: ‘DLT_RAW’ undeclared (first use in this function)decpcap.c:284: error: ‘DLT_NULL’ undeclared (first use in this function)decpcap.c:289: error: ‘struct dp_handle’ has no member named ‘linktype’decpcap.c: In function ‘dp_dispatch’:decpcap.c:296: error: ‘struct dp_handle’ has no member named ‘userdata’decpcap.c:297: error: ‘struct dp_handle’ has no member named ‘userdata_size’decpcap.c:298: warning: implicit declaration of function ‘pcap_dispatch’decpcap.c:298: error: ‘struct dp_handle’ has no member named ‘pcap_handle’decpcap.c: In function ‘dp_setnonblock’:decpcap.c:302: warning: implicit declaration of function ‘pcap_setnonblock’decpcap.c:302: error: ‘struct dp_handle’ has no member named ‘pcap_handle’decpcap.c: In function ‘dp_geterr’:decpcap.c:307: warning: implicit declaration of function ‘pcap_geterr’decpcap.c:307: error: ‘struct dp_handle’ has no member named ‘pcap_handle’make: *** [decpcap.o] Error 1
还是缺少依赖的东西,运行下面命令安装:

yum install libpcap-dev libncurses5-dev

[root@localhost nethogs]# yum install libpcap-dev libncurses5-devLoaded plugins: fastestmirror, refresh-packagekit, securityLoading mirror speeds from cached hostfile * base: mirrors.skyshe.cn * extras: mirrors.skyshe.cn * updates: mirrors.skyshe.cnSetting up Install ProcessNo package libpcap-dev available.No package libncurses5-dev available.Error: Nothing to do[root@localhost nethogs]# yum  -y install libpcap-devel  ncurses-develLoaded plugins: fastestmirror, refresh-packagekit, securityLoading mirror speeds from cached hostfile * base: mirrors.skyshe.cn * extras: mirrors.skyshe.cn * updates: mirrors.skyshe.cnSetting up Install ProcessPackage ncurses-devel-5.7-3.20090208.el6.x86_64 already installed and latest versionResolving Dependencies--> Running transaction check---> Package libpcap-devel.x86_64 14:1.4.0-1.20130826git2dbcaa1.el6 will be installed--> Finished Dependency ResolutionDependencies Resolved=============================================================================================================================================================================================== Package                                      Arch                                  Version                                                          Repository                           Size===============================================================================================================================================================================================Installing: libpcap-devel                                x86_64                                14:1.4.0-1.20130826git2dbcaa1.el6                                base                                114 kTransaction Summary===============================================================================================================================================================================================Install       1 Package(s)Total download size: 114 kInstalled size: 160 kDownloading Packages:libpcap-devel-1.4.0-1.20130826git2dbcaa1.el6.x86_64.rpm                                                                                                                 | 114 kB     00:00     Running rpm_check_debugRunning Transaction TestTransaction Test SucceededRunning Transaction  Installing : 14:libpcap-devel-1.4.0-1.20130826git2dbcaa1.el6.x86_64                                                                                                                      1/1   Verifying  : 14:libpcap-devel-1.4.0-1.20130826git2dbcaa1.el6.x86_64                                                                                                                      1/1 Installed:  libpcap-devel.x86_64 14:1.4.0-1.20130826git2dbcaa1.el6                                                                                                                       Complete!
再运行:
make && make install
[root@localhost nethogs]# make && make installcc -g -Wall -Wextra -c decpcap.cdecpcap.c: In function ‘dp_open_live’:decpcap.c:60: warning: passing argument 5 of ‘pcap_open_live’ discards qualifiers from pointer target type/usr/include/pcap/pcap.h:349: note: expected ‘char *’ but argument is of type ‘const char *’g++ -g -Wall -Wextra -c cui.cpp -DVERSION=\"0\" -DSUBVERSION=\"8\" -DMINORVERSION=\"0\"g++ -g -Wall -Wextra -c inode2prog.cppg++ -g -Wall -Wextra -c conninode.cppg++    -c -o devices.o devices.cppg++ -g -Wall -Wextra nethogs.cpp packet.o connection.o process.o refresh.o decpcap.o cui.o inode2prog.o conninode.o devices.o -o nethogs -lpcap -lm -lncurses -DVERSION=\"0\" -DSUBVERSION=\"8\" -DMINORVERSION=\"0\"g++ -g -Wall -Wextra decpcap_test.cpp decpcap.o -o decpcap_test -lpcap -lminstall -d -m 755 /usr/local/sbininstall -m 755 nethogs /usr/local/sbininstall -d -m 755 /usr/local/share/man/man8/install -m 644 nethogs.8 /usr/local/share/man/man8/
成功安装了!

运行:nethogs

[root@localhost nethogs]# nethogsWaiting for first packet to arrive (see sourceforge.net bug 1019381)NetHogs version 0.8.0  PID USER     PROGRAM                                                                                                                                     DEV        SENT      RECEIVED       3227  root     sshd: root@pts/2                                                                                                                            eth0       0.666	  0.059 KB/sec?

root unknown TCP 0.000 0.000 KB/sec TOTAL 0.666 0.059 KB/sec

下图显示各进程当前网络使用情况:

按“m”键能够切换到统计视图,显示各进程总的网络使用情况

按“Ctrl+C”或“q”退出监控

使用帮助:

[root@localhost ~]# nethogs --helpnethogs: invalid option -- '-'usage: nethogs [-V] [-b] [-d seconds] [-t] [-p] [device [device [device ...]]]		-V : 显示版本号信息,注意是大写字母V.		-d : 延迟更新刷新速率,以秒为单位。默认值为 1.		-t : 跟踪模式.		-b : bug 狩猎模式 — — 意味着跟踪模式.		-p : 混合模式(不推荐).		设备 : 要监视的设备名称. 默觉得 eth0当 nethogs 运行时, 按: q: 退出 m: 总数和当前使用情况模式之间切换

你可能感兴趣的文章
web网站加速之CDN(Content Delivery Network)技术原理
查看>>
sed的基本用法
查看>>
ansible模块批量管理
查看>>
细说浏览器特性检测(1)-jQuery1.4添加部分
查看>>
积跬步,聚小流------Bootstrap学习记录(1)
查看>>
Android官方架构组件LiveData: 观察者模式领域二三事
查看>>
vmware workstation14永久激活密钥分享
查看>>
Myeclipse中打开接口实现类的快捷键
查看>>
使用JdbcTemplate和JdbcDaoSupport
查看>>
Glibc 和 uClibc
查看>>
Mysql学习第三课-分析二进制日志进行增量备份和还原
查看>>
HDU 6073 - Matching In Multiplication | 2017 Multi-University Training Contest 4
查看>>
如何检测域名是否被微信屏蔽 微信域名检测接口API是如何实现
查看>>
POJ1611-The Suspects
查看>>
Linux下安装Python-3.3.2【转】
查看>>
LeetCode OJ:Merge Two Sorted Lists(合并两个链表)
查看>>
功能测试
查看>>
【BZOJ 1901】Dynamic Rankings
查看>>
Github-Client(ANDROID)开源之旅(二) ------ 浅析ActionBarSherkLock
查看>>
React-Native 之 GD (十六)首页筛选功能
查看>>