nload
is a console application that visualizes bandwidth usage on a network interface. Unlike tools like iftop
which show connection-level details, nload
focuses on traffic volume—ideal for observing upload/download rates and usage trends.
Available from most Linux package managers:
sudo apt install nload # Debian / Ubuntu
sudo yum install nload # CentOS / RHEL
sudo pacman -S nload # Arch Linux
To run on a specific interface:
sudo nload eth0
If no interface is specified, it will prompt for one or auto-select.
nload -t 500 eth0
nload -u M eth0
nload -m eth0 wlan0
For kilobyte unit and 1-second refresh:
nload -u K -t 1000 eth0
sudo
is required for interface accessiftop
or ss
for deeper inspectionnload
is a user-friendly, graph-rich tool for bandwidth visualization in Linux. It offers quick feedback during performance tests or routine monitoring, especially on headless systems or servers without GUI. Lightweight and intuitive, it's a great addition to any system admin’s toolkit.