How to install Gparted partition editor on Linux
Last Updated :
15 Nov, 2023
some tools are
On Linux systems, managing disk partitions can be challenging, especially for new users. Fortunately, some tools are easy to use which can make this procedure simpler. GParted, is a user-friendly partition editor that enables users to manage their disk partitions. In this article, we will discuss the GParted tool in the Linux Operating system.
Prerequisites:
- Before we begin the installation of GParted, we need the Administrative privileges for installing the packages for GParted.
- We need to update our Linux Repository such that whatever dependencies are required for GParted is already installed in our system.
Installation of GParted on Debian/Ubuntu
1. Repository Update
Updating the system repository to check whether any updates are available for packages.
sudo apt update
Kali Update2. Repository Upgrade
Upgrading the dependencies and packages into its newest version.
sudo apt upgrade
Kali Upgrade3. Gparted Installation
Install the GParted partition tool using the "apt" package manager.
sudo apt install gparted
Kali Gparted
4. Access Gparted
After installing the gparted tool, we can simply access it by writing the command "gparted" on the terminal.
gparted
Access Gparted5. Functions
We can simply make changes in the partition like resizing the partition, creating a new partition, deleting the partition, unmounting the partition, and more.
-(1).webp)
Installation of GParted in RHEL/CentOS
1. Installation of epel
Install EPEL (Extra Package for Enterprise Linux) for extra high-end package support that doesn't come in the default repository.
sudo yum install epel-release
.webp)
2. Repository Update
Update the repository to add extra dependencies and packages to the repository.
sudo apt update
.webp)
3. Gparted Installation
Install gparted tool in CentOS using the "yum" package manager.
sudo yum install gparted
CentOS install Gparted4. Access Gparted Tool:
Access the gparted tool by simply writing the "gparted" command on the terminal but it can be only accessed by the root user or sudoer user.
gparted
CentOS install GpartedInstallation of GParted in Fedora OS
1. Repository Update:
Update the system repository using the package manager "dnf" to add the additional dependencies and packages.
sudo dnf update
Fedora Update2. Gparted Installation
Install the GParted in fedora using the "dnf" package manager.
sudo dnf install gparted
.webp)
3. Accessing the gparted tool
Access the gparted tool while writing the command gparted in the terminal.
gparted
.webp)
Installation of Gparted in ArchLinux
1. Installation of Gparted
Install the Gparted tool using the "pacman" repository manager.
pacman -Sy gparted
Arch2. Access Gparted Tool
Access the gparted tool by simply writing the "gparted" command in the terminal.
gparted
.png)
Conclusion
Lastly, installing GParted on a Linux system is a simple procedure that gives efficient control over disk partitions. GParted makes complicated activities like resizing, moving, creating, and removing partitions easy due to its user-friendly interface and robust features. By following the instructions in this article, we have discovered a useful tool that improves your use of Linux and gives an accurate way to effectively handle disk storage.
Similar Reads
How to Install Python-GDmodule on Linux?
A module is nothing more than a file containing Python code. A module can describe functions, groups, and variables. A module can also contain executable code. Multiple programs can import a module for their application, so a single code can be used by multiple programs to complete their functionali
1 min read
How to Install Python docutils on Linux?
Docutils is an open-source text processing system. It is written in Python language. It is used to process simple text or plaintext documents into some useful formats like LaTex, HTML, OpenDocument, XML, etc. It is easy to use and easy to read. It is available for operating systems like, Windows, ma
2 min read
How To Install Qt Creator On Linux?
Qt Creator is a cross-platform C++, JavaScript, and QML integrated environment that simplifies GUI application development. It is currently available for Windows, macOS, and Linux. It is part of the SDK for the Qt GUI application development framework and uses the Qt API, which encapsulates host OS
2 min read
How to Install Python on Linux
This guide explains how to install Python on Linux machines. Python has become an essential programming language for developers, data scientists, and system administrators. It's used for various applications, including web development, data science, automation, and machine learning. This comprehensi
15+ min read
How To Install "git-gui" on Linux?
Git is a FOSS (Free and Open Source Software) that is used for version control of any set of files, typically, the source code of software projects. Git is a version control system for recording changes in any group of files. During software development, it's generally used to coordinate work among
2 min read
How to Install Gekko In Python on Linux?
In this article, we will learn how to install Gekko in Python on Linux. GEKKO is a Python package for machine learning and optimization of mixed-integer and differential-algebraic equations. It is coupled with large-scale solvers for linear, quadratic, nonlinear, and mixed-integer programming (LP, Q
2 min read
How to Install Garuda Linux on VirtualBox?
Garuda Linux is a rolling distribution that is based on the Arch Linux operating system, except, like Arch Linux, Garuda Linux comes with a graphical installer which is useful for easy installation, and also has other advanced graphical tools for managing one's system. It is a performance-oriented L
3 min read
How to Install Rasterio on Linux?
Rasterio is a python library for reading and writing on geospatial raster datasets. It is a GDAL and NumPy-based Python library for raster data. We can use any of the following methods to install Rasterio on our Linux machine. Method 1: Using pip command Prerequisites: We must have pip ( a python pa
2 min read
How To Install Microsoft Edge On Linux?
Want to set up Microsoft Edge on a Linux system? Linux users may now access Microsoft Edge, which was previously only available on Windows. Microsoft Edge for Linux is simple to download and use as your daily browser, regardless of the distribution you're usingâUbuntu, Debian, or another. Regardless
4 min read
How to Install GD module on Linux?
GD is a python library. It provides various features and an async-ready API wrapper for the geometry dash. It is easy to use. It is used to implement the geometry dash API and is also very handy to work with object-oriented design. Installing GD module on Linux Method 1: Using pip to install GD Pack
2 min read