btop
btop is a resource monitor that shows usage and stats for processor, memory, disks, network and processes.
- btop [EN] @ Fedora Package
- btop [EN] @ Homebrew Formula
Documentation
Further Information
- Btop++: Linux System Monitoring Tool That is Definitely Better than Top (22.06.2025) [EN] @ It's FOSS
Syntax
btop [PARAMETER ...] [FILE ...]
Parameters
- -f FILTER, --filter FILTER
- Set an initial process FILTER.
- --force-utf
- Force start even if no UTF-8 locale was detected.
- -l, --low-color
- Disable true color, 256 colors only.
- -p ID, --preset ID
- Start with a preset (0-9).
Examples
- Set alias to replace top
vi "${HOME}/.profile"
if type -P 'btop' >'/dev/null' 2>&1; then
alias top='btop --force-utf'
fi