経時的なネットワークトラフィック測定

経時的なネットワークトラフィック測定

私のコンピュータがどれだけのネットワークトラフィックを使用しているか、つまり30 GBの転送制限が少なすぎるかどうかを知りたいです。それを測定するための最良のツールは何ですか?

Linux Mint 17を使う

ベストアンサー1

vnstat は CLI オプションです。 vnstatは、CLIで照会できるデーモンプロセスとして実行できます。

apt-get install -y vnstat # install the software
vnstat -u -i eth0 # enable monitoring of eth0 by default
service vnstat restart # this may not work on Mint, I don't have a system to test with, but it does work on CentOS
vnstat -h # show per-hour breakdown of traffic for the past 24 hours

おすすめ記事