目录
一、nload介绍
nload 命令用于查看linux网络流量状况,实时输出。可以理解为是一个控制台应用程序,用来实时监测网络流量和带宽使用情况的命令。
使用可视化的界面显示流入和留出系统的网络带宽数据
二、nload下载和安装
官网为:http://www.roland-riegel.de/nload/
安装依赖环境
[root@test1 ~]# yum -y install gcc gcc-c++ ncurses-devel
远程下载nload安装包
[root@test1 ~]# cd /opt/
[root@test1 opt]# wget http://www.roland-riegel.de/nload/nload-0.7.4.tar.gz
解压文件
[root@test1 opt]# tar xf nload-0.7.4.tar.gz
编译安装
[root@test1 nload-0.7.4]# cd nload-0.7.4/
[root@test1 nload-0.7.4]# ./configure
[root@test1 nload-0.7.4]# make && make install
三、命令用法
nload [options] [devices]
参数
-a:这个好像是全部数据的刷新时间周期,单位是秒,默认是300.
-i:进入网卡的流量图的显示比例最大值设置,默认10240 kBit/s.
-m:不显示流量图,只显示统计数据。
-o:出去网卡的流量图的显示比例最大值设置,默认10240 kBit/s.
-t:显示数据的刷新时间间隔,单位是毫秒,默认500。
-u:设置右边Curr、Avg、Min、Max的数据单位,默认是自动变的.注意大小写单位不同!
h|b|k|m|g h: auto, b: Bit/s, k: kBit/s, m: MBit/s etc.
H|B|K|M|G H: auto, B: Byte/s, K: kByte/s, M: MByte/s etc.
-U:设置右边Ttl的数据单位,默认是自动变的,注意大小写单位不同(与-u相同)!
Devices:自定义监控的网卡,默认是全部监控的,使用左右键切换。
实例:
nload #查看流量
[root@test1 ~]# nload
nload eth0 #查看指定设备的流量
[root@test1 ~]# nload eth0
运行nload之后,可以使用的快捷键:
使用左右箭头键或Enter / Tab键将显示切换到下一个网卡。
使用F2显示选项窗口。
使用F5将当前设置保存到用户配置文件中。
使用F6从配置文件中重新加载设置。
使用q或Ctrl + C退出nload。
一次显示多个设备,不显示流量图
可以使用-m选项
[root@test1 ~]# nload -m
设置计算时间窗口的长度(以秒为单位)
使用-a 选项
[root@test1 ~]# nload -a 400
设置显示的刷新间隔(以毫秒为单位,默认值为500)
使用 -t interval选项;注意:将刷新间隔指定为小于大约100毫秒会使流量计算不精确
[root@test1 ~]# nload -ma 400 -t 1000
标签:test1,nload,安装,0.7,设置,使用,root
From: https://blog.csdn.net/Mo_nor/article/details/136818120