How To Install gparted on AlmaLinux 8

In this tutorial we learn how to install gparted in AlmaLinux 8. gparted is Gnome Partition Editor

Introduction

In this tutorial we learn how to install gparted on AlmaLinux 8.

What is gparted

GParted stands for Gnome Partition Editor and is a graphical frontend to libparted. Among other features it supports creating, resizing, moving and copying of partitions. Also several (optional) filesystem tools provide support for filesystems not included in libparted. These optional packages will be detected at runtime and don’t require a rebuild of GParted

We can use yum or dnf to install gparted on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install gparted.

Install gparted on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install gparted using dnf by running the following command:

sudo dnf -y install gparted

Install gparted on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install gparted using yum by running the following command:

sudo yum -y install gparted

How To Uninstall gparted on AlmaLinux 8

To uninstall only the gparted package we can use the following command:

sudo dnf remove gparted

References

Summary

In this tutorial we learn how to install gparted on AlmaLinux 8 using yum and dnf.