在Linux中,可以使用sar命令来查看网络流量。
要使用sar命令查看网络流量,可以按照以下步骤进行操作:
sudo apt-get install sysstat
sar -n DEV
该命令将显示网络设备的统计信息,包括接收和发送的数据量、错误数量等。
sar -n DEV -I <network_interface>
将<network_interface>
替换为你想要查看的网络设备的名称,例如eth0或wlan0。
sar -n DEV -s <start_time> -e <end_time>
将<start_time>
和<end_time>
替换为你想要查看的时间范围。时间格式为HH:MM:SS,例如08:00:00表示早上8点。
这些命令可以帮助你在Linux中使用sar命令查看网络流量。