Internet

長期測量網路流量

  • March 3, 2015

我想知道我的電腦使用了多少網路流量,即 30GB 的傳輸限制是否不會太少。測量它的最佳工具是什麼?

使用 Linux Mint 17

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

引用自:https://unix.stackexchange.com/questions/187968