How To Install bpytop on Rocky Linux 8
Introduction
In this tutorial we learn how to install bpytop
on Rocky Linux 8.
What is bpytop
Resource monitor that shows usage and stats for processor, memory, disks, network and processes. Python port of bashtop. Features - Easy to use, with a game inspired menu system. - Full mouse support, all buttons with a highlighted key is clickable and mouse scroll works in process list and menu boxes. - Fast and responsive UI with UP, DOWN keys process selection. - Function for showing detailed stats for selected process. - Ability to filter processes, multiple filters can be entered. - Easy switching between sorting options. - Send SIGTERM, SIGKILL, SIGINT to selected process. - UI menu for changing all config file options. - Auto scaling graph for network usage. - Shows message in menu if new version is available - Shows current read and write speeds for disks
We can use yum
or dnf
to install bpytop
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install bpytop.
Install bpytop on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install bpytop
using dnf
by running the following command:
sudo dnf -y install bpytop
Install bpytop on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install bpytop
using yum
by running the following command:
sudo yum -y install bpytop
How To Uninstall bpytop on Rocky Linux 8
To uninstall only the bpytop
package we can use the following command:
sudo dnf remove bpytop
bpytop Package Contents on Rocky Linux 8
/usr/bin/bpytop
/usr/share/bpytop
/usr/share/bpytop/doc
/usr/share/bpytop/themes
/usr/share/bpytop/themes/adapta.theme
/usr/share/bpytop/themes/default_black.theme
/usr/share/bpytop/themes/dracula.theme
/usr/share/bpytop/themes/dusklight.theme
/usr/share/bpytop/themes/flat-remix-light.theme
/usr/share/bpytop/themes/flat-remix.theme
/usr/share/bpytop/themes/greyscale.theme
/usr/share/bpytop/themes/gruvbox_dark.theme
/usr/share/bpytop/themes/kyli0x.theme
/usr/share/bpytop/themes/matcha-dark-sea.theme
/usr/share/bpytop/themes/monokai.theme
/usr/share/bpytop/themes/nord.theme
/usr/share/bpytop/themes/solarized_dark.theme
/usr/share/bpytop/themes/whiteout.theme
/usr/share/doc/bpytop
/usr/share/doc/bpytop/CHANGELOG.md
/usr/share/doc/bpytop/README.md
/usr/share/licenses/bpytop
/usr/share/licenses/bpytop/LICENSE
References
Summary
In this tutorial we learn how to install bpytop
on Rocky Linux 8 using yum and dnf.