How to Change aria2 Progress Summary Interval?

To change how frequently the aria2 command-line download utility prints its progress summary to the console, you must use the --summary-interval option. By default, aria2 outputs a status update—showing the download speed, progress percentage, and estimated time remaining—every 60 seconds. By passing this specific flag followed by your desired time in seconds, you can either increase the frequency for real-time monitoring or decrease it to keep your terminal logs clean.

Understanding the --summary-interval Option

The summary-interval setting defines the gap between each progress report in the console. Setting this value appropriately is highly useful when redirecting outputs to log files or running aria2 in automated scripts where excessive verbosity is unwanted.

The basic syntax for the command is:

aria2c --summary-interval=<SEC> [URL]

Examples of Usage

Making the Setting Permanent

If you find yourself using the same interval frequently, you can avoid typing the flag every time by adding it to your aria2 configuration file (usually located at ~/.config/aria2/aria2.conf on Linux/macOS).

Add the following line to the file:

summary-interval=10

Once saved, aria2 will automatically apply a 10-second progress summary interval to all future download sessions unless overridden manually in the command line.