How To Install peony-extensions on Ubuntu 22.04

In this tutorial we learn how to install peony-extensions on Ubuntu 22.04. peony-extensions is Peony qt extensions

Introduction

In this tutorial we learn how to install peony-extensions on Ubuntu 22.04.

What is peony-extensions

peony-extensions is:

Peony is the official file manager for the UKUI desktop. This package is a metapackage, which adds extended functionality to the Peony file manager.

There are three methods to install peony-extensions on Ubuntu 22.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 peony-extensions Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install peony-extensions

Install peony-extensions Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install peony-extensions

Install peony-extensions 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 peony-extensions using aptitude by running the following command:

sudo aptitude -y install peony-extensions

How To Uninstall peony-extensions on Ubuntu 22.04

To uninstall only the peony-extensions package we can use the following command:

sudo apt-get remove peony-extensions

Uninstall peony-extensions And Its Dependencies

To uninstall peony-extensions and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:

sudo apt-get -y autoremove peony-extensions

Remove peony-extensions Configurations and Data

To remove peony-extensions configuration and data from Ubuntu 22.04 we can use the following command:

sudo apt-get -y purge peony-extensions

Remove peony-extensions configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge peony-extensions

References

Summary

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