System resource monitoring with bpytop
Fast and Functional
Linux users have many options for monitoring system resources, but bpytop, a new Python port of bashtop, more than stands out from the crowd.
With a system like Linux, which is available to multiple users at the same time, it is important to keep an eye on the available resources. Is a graphical application running haywire and blocking all of the CPU's cores? Is a user running a computationally intensive script and thus making work agonizingly slow for the server's other users? Has a process gone wild and started to write increasing amounts of corrupted data to the hard disk?
Such questions can be answered by various monitoring tools. The popular distributions typically preinstall Top. The program provides an overview of the active processes and measures both the CPU load and the RAM usage. Htop offers similar functions in a visually appealing format. Other programs display the network load (iftop) or determine which applications or processes cause massive writes to the hard disk (iotop).
Bashtop [1] combines many of these functions in a text-based interface. The program displays the CPU load both numerically and as a pseudographic. It lists the active processes along with their memory and CPU consumption, visualizes the throughput rates of the individual network interfaces, and much more. The program has a downside, however. As the name already suggests, it was programmed completely as a Bash script. This makes further maintenance and development complicated; it also slows down the program. But now there's another option that addresses these issues, because bashtop's developer has released an official Python port of the utility called bpytop [2].
Installation
Bpytop was first introduced in August 2020. Accordingly, most of the major distributions have not yet added it to their package sources. Only Arch Linux and its derivatives, such as Manjaro, offer the program, and only in the Arch User Repository (AUR). Arch users can call an AUR helper such as Yay for the install. The yay -S bpytop
command imports bpytop with all dependencies. For Ubuntu, there is a Snap package [3], but it makes very little sense to set up a lean command-line tool with a monster like Snap. In this case, a manual install is the preferred approach.
The commands from the first four lines of Listing 1 help you load the build dependencies onto your system and build bpytop from the source code previously downloaded off GitHub. If you keep the bpytop/
build folder, you can cleanly remove the program from the system with the command from line 5. After the install, call the program with the bpytop
command in a terminal window. There is no entry in the start menu of the desktop environment.
Listing 1
Install bpytop
01 $ sudo apt install git build-essential python3-distutils python3-psutil 02 $ git clone https://github.com/aristocratos/bpytop.git 03 $ cd bpytop 04 $ sudo make install 05 $ sudo make uninstall
Operations
The bpytop screen is divided into several areas (Figure 1). At the top, the program displays the load and temperature of the individual cores (see the "Sensors" box), as well as a plot of the utilization as a graph. Below this on the left, you will find the main memory and data carrier usage. In the box below, bpytop displays the current transfer rates for a selected network interface card and the corresponding history. The box on the right contains a list of all active processes together with their memory usage, resulting CPU load, process ID, user, number of threads, and other data.

Within the application you can now use the mouse or the keyboard. Gray letters mark dialogs and switches – you have to look carefully here: The letters are small, and options are case sensitive. For example, pressing m or clicking on mini will switch to a reduced mode that only displays the taskbar and CPU history (Figure 2). Pressing M or clicking on Menu opens a menu where you can access the settings and help features or quit the program (Figure 3). Use b or n or click on <b or n> to change the network interface card displayed in the Net area.


In the settings, you can choose between 10 different color variants in Color theme. You can switch between the options with the left and right arrow keys. There is also the possibility to permanently activate mini mode or to disable the color gradient in the process list (Proc gradient). If required, additional drives can be included or excluded from the display in Disk filter. The program in the right-hand column provides information on the individual options.
Processes
Bpytop uses most of its space to display the process list. By default, it sorts the list by CPU usage. You can use the left and right arrow keys or click on the square brackets next to the current mode (for example cpu lazy) to change the sort order.
Use reverse to reverse the sort order; tree activates a tree view. With f and a search term, you can filter out certain processes from the mass of data. Press Enter to complete the filter so that you can browse the list of matches using the up and down arrow keys. If necessary, you can press Del to empty the filter again.
Once you have selected a process in the list, a menubar appears below the box with info, terminate (sends signal SIGTERM
), kill (SIGKILL
), and interrupt (SIGINT
). You can trigger an action either by clicking on the corresponding entry or by using the highlighted shortcut keys. However, be careful when terminating processes; there are no prompts. If you shoot down the wrong process, unsaved data may be lost.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
News
-
Mageia 9 Beta 2 is Ready for Testing
The latest beta of the popular Mageia distribution now includes the latest kernel and plenty of updated applications.
-
KDE Plasma 6 Looks to Bring Basic HDR Support
The KWin piece of KDE Plasma now has HDR support and color management geared for the 6.0 release.
-
Bodhi Linux 7.0 Beta Ready for Testing
The latest iteration of the Bohdi Linux distribution is now available for those who want to experience what's in store and for testing purposes.
-
Changes Coming to Ubuntu PPA Usage
The way you manage Personal Package Archives will be changing with the release of Ubuntu 23.10.
-
AlmaLinux 9.2 Now Available for Download
AlmaLinux has been released and provides a free alternative to upstream Red Hat Enterprise Linux.
-
An Immutable Version of Fedora Is Under Consideration
For anyone who's a fan of using immutable versions of Linux, the Fedora team is currently considering adding a new spin called Fedora Onyx.
-
New Release of Br OS Includes ChatGPT Integration
Br OS 23.04 is now available and is geared specifically toward web content creation.
-
Command-Line Only Peropesis 2.1 Available Now
The latest iteration of Peropesis has been released with plenty of updates and introduces new software development tools.
-
TUXEDO Computers Announces InfinityBook Pro 14
With the new generation of their popular InfinityBook Pro 14, TUXEDO upgrades its ultra-mobile, powerful business laptop with some impressive specs.
-
Linux Kernel 6.3 Release Includes Interesting Features
Although it's not a Long Term Release candidate, Linux 6.3 includes features that will benefit end users.