How to Install Glances on CentOS Stream 9 and 8

Install Glances on CentOS Stream 9 and 8 with DNF and EPEL, understand how Stream differs from the conservative RHEL clones, and launch the Glances web UI safely.

Greenshot

If you want the broad distro comparison first, start with How to Install Glances on Linux. This page is specifically for CentOS Stream.

If you are on RHEL, Rocky Linux, or AlmaLinux, use the dedicated enterprise-family guide instead: How to Install Glances on RHEL 9/8, Rocky Linux and AlmaLinux.

Quick Answer

  1. Enable EPEL (CentOS Stream usually has it by default): sudo dnf install epel-release -y
  2. Install Glances: sudo dnf install glances -y
  3. Verify: glances --version
  4. Launch: glances (press q to quit)
  5. For a newer version use pip: pip3 install glances

Why CentOS Stream deserves its own page

CentOS Stream sits ahead of RHEL in the release flow, so package timing and repository behaviour can differ from the more conservative RHEL, Rocky, and AlmaLinux path. The installation commands are similar, but the platform intent is not identical.

Method 1: Install Glances with DNF and EPEL

Step 1: Enable EPEL

For CentOS Stream 9:

sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm -y

For CentOS Stream 8:

sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -y

Step 2: Install Glances

sudo dnf install glances -y

Step 3: Verify the install

glances --version

Method 2: Install Glances with pip

If you want a newer release than the repository provides, use Python tooling instead:

sudo dnf install python3 python3-pip -y
sudo pip3 install "glances[all]"

How to start Glances on CentOS Stream

Terminal mode

glances

Web interface

glances -w

Open the default web port if needed:

sudo firewall-cmd --add-port=61208/tcp --permanent
sudo firewall-cmd --reload

Then browse to:

http://<your_server_ip>:61208

When should you use the other RHEL-family page instead?

If your environment is built on supported enterprise clones where stability matters more than the rolling Stream model, use the RHEL/Rocky/AlmaLinux guide instead of this one. That is the better page for standard enterprise installs.

Related Glances guides

This page should rank for CentOS Stream-specific Glances installs. If you do not need Stream-specific coverage long term, this is the first page in the cluster I would consider setting to noindex later.

Elsewhere On TurboGeek:  Secure Your Linux Login: Easy Google Authentication MFA Setup

Want more of this kind of guide?

Use the blog and category routes to keep moving through the archive, or support TurboGeek if the site saves you time regularly.

Translate »