How To Install parted on Ubuntu 20.04

In this tutorial we learn how to install parted on Ubuntu 20.04. parted is disk partition manipulator disk partition manipulator

Introduction

In this tutorial we learn how to install parted on Ubuntu 20.04.

What is parted

parted is:

GNU Parted is a program that allows you to create, destroy, resize, move, and copy disk partitions. This is useful for creating space for new operating systems, reorganizing disk usage, and copying data to new hard disks.

This package contains the binary and manual page. Further documentation is available in parted-doc.

Parted currently supports DOS, Mac, Sun, BSD, GPT, MIPS, and PC98 partitioning formats, as well as a “loop” (raw disk) type which allows use on RAID/LVM. It can detect and remove ASFS/AFFS/APFS, Btrfs, ext2/3/4, FAT16/32, HFS, JFS, linux-swap, UFS, XFS, and ZFS file systems. Parted also has the ability to create and modify file systems of some of these types, but using it to perform file system operations is now deprecated.

The nature of this software means that any bugs could cause massive data loss. While there are no such bugs known at the moment, they could exist, so please back up all important files before running it, and do so at your own risk. Task: standard, ubuntu-core

Package: parted Architecture: amd64 Version: 3.3-4 Multi-Arch: foreign Priority: standard Section: admin Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Parted Maintainer Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 167 Depends: libc6 (>= 2.11), libparted2 (= 3.3-4), libreadline8 (>= 6.0), libtinfo6 (>= 6) Suggests: parted-doc Conflicts: fsresize, parted1.6 Replaces: fsresize, parted1.6 Filename: pool/main/p/parted/parted_3.3-4_amd64.deb Size: 43180 MD5sum: 775a3cbdd7e0b01b6d9e36f62a150edd SHA1: f5a2bf65b069f1b0686d3fcf057160ff7c36dd2e SHA256: 76a04345e323a6c63395cc1ca3e8b066757f212b06cde5f448e8766b10105c88 Homepage: http://www.gnu.org/software/parted Description-en: disk partition manipulator GNU Parted is a program that allows you to create, destroy, resize, move, and copy disk partitions. This is useful for creating space for new operating systems, reorganizing disk usage, and copying data to new hard disks.

This package contains the binary and manual page. Further documentation is available in parted-doc.

Parted currently supports DOS, Mac, Sun, BSD, GPT, MIPS, and PC98 partitioning formats, as well as a “loop” (raw disk) type which allows use on RAID/LVM. It can detect and remove ASFS/AFFS/APFS, Btrfs, ext2/3/4, FAT16/32, HFS, JFS, linux-swap, UFS, XFS, and ZFS file systems. Parted also has the ability to create and modify file systems of some of these types, but using it to perform file system operations is now deprecated.

The nature of this software means that any bugs could cause massive data loss. While there are no such bugs known at the moment, they could exist, so please back up all important files before running it, and do so at your own risk. Task: standard, ubuntu-core

There are three methods to install parted on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install parted Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install parted using apt-get by running the following command:

sudo apt-get -y install parted

Install parted Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install parted using apt by running the following command:

sudo apt -y install parted

Install parted Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install parted using aptitude by running the following command:

sudo aptitude -y install parted

How To Uninstall parted on Ubuntu 20.04

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

sudo apt-get remove parted

Uninstall parted And Its Dependencies

To uninstall parted and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove parted

Remove parted Configurations and Data

To remove parted configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge parted

Remove parted configuration, data, and all of its dependencies

We can use the following command to remove parted configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge parted

References

Summary

In this tutorial we learn how to install parted package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.