Forensicspartitioneditordiskfilesystemgnome

GParted

GNOME partition editor for creating, reorganizing, and deleting disk partitions. Uses libparted to detect and manipulate devices and partition tables.

Description

The gparted application is the GNOME partition editor for manipulating disk partitions. It enables users to change the partition organization on a disk device while preserving the contents of the partitions. GParted uses libparted to detect and manipulate devices and partition tables, with optional filesystem tools providing support for filesystems not included in libparted.

With gparted, users can accomplish tasks such as creating a partition table on a disk device, enabling and disabling partition flags like boot and hidden, and performing actions on partitions including create, delete, resize, move, check, label, copy, and paste. It is designed for disk management in environments like Kali Linux, where precise control over storage is needed.

Editing partitions has the potential to cause data loss due to software bugs, hardware problems, or power failure. Users are advised to backup data before use and avoid mounting or unmounting partitions outside the application while it is running.

How It Works

GParted uses libparted to detect and manipulate devices and partition tables. Several optional filesystem tools provide support for filesystems not included in libparted. The application carefully tests operations to reduce data loss risk, allowing partition reorganization while preserving contents through actions like resize, move, and copy.

Installation

bash
sudo apt install gparted

Flags

[device]...Specify one or more disk devices to start gparted with.

Examples

Start gparted without specifying devices, opening the GNOME partition editor.
gparted
Start gparted with the device /dev/sda for partition management.
gparted /dev/sda
Start gparted with the device /dev/sdc for partition management.
gparted /dev/sdc
Start gparted with devices /dev/sda and /dev/sdc as shown in the example.
gparted /dev/sda /dev/sdc
Start gparted with an NVMe device for partition editing.
gparted /dev/nvme0n1
Run gparted with elevated privileges if required for certain devices.
sudo gparted
Updated 2026-04-16kali.org ↗