需要监控网络流量,linux上的工具是 nload , 在鲲鹏cpu+银河麒麟OS上,可以尝试用 sudo apt install nload
安装。但是如果报告源无法访问就只能自己编译了。
下载nload源代码,好像很久没有更新了,最新版本 0.7.4:
wget http://www.roland-riegel.de/nload/nload-0.7.4.tar.gz
tar zxf nload-0.7.4.tar.gz
./configure
这里报告错误,can not guess build target ,需要手工指定:
./configure --build=arm-linux
然后
make
sudo make install
在make的时候如果报告确实依赖库 ncurses, 也需要下载源码编译:
wget http://ftp.gnu.org/pub/gnu/ncurses/ncurses-6.3.tar.gz
tar zxf ncurses-6.3.tar.gz
./cofigure
make
sudo make install
ncurses库比较新,configure可以猜出系统的架构是arm,不需要手工指定了。
启动 nload,如果系统有多个网卡,它可能显示一个没有启用的网卡,流量都是0,可以指定网卡,nload 后面直接跟网卡名称就行。网卡名称可以从 ip a
命令获取。
nload -m 显示所有网卡的流量,如果一屏显示不下,按上下箭头切换。