How To Install thunar-archive-plugin on Ubuntu 20.04

In this tutorial we learn how to install thunar-archive-plugin on Ubuntu 20.04. thunar-archive-plugin is Archive plugin for Thunar file manager

Introduction

In this tutorial we learn how to install thunar-archive-plugin on Ubuntu 20.04.

What is thunar-archive-plugin

thunar-archive-plugin is:

This plugin allows one to extract and create archive from inside the Thunar file manager. At the moment it uses file-roller but will use xarchiver in the future. Task: xubuntu-desktop, ubuntustudio-desktop

There are three methods to install thunar-archive-plugin 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 thunar-archive-plugin Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install thunar-archive-plugin

Install thunar-archive-plugin Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install thunar-archive-plugin using apt by running the following command:

sudo apt -y install thunar-archive-plugin

Install thunar-archive-plugin 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 thunar-archive-plugin using aptitude by running the following command:

sudo aptitude -y install thunar-archive-plugin

How To Uninstall thunar-archive-plugin on Ubuntu 20.04

To uninstall only the thunar-archive-plugin package we can use the following command:

sudo apt-get remove thunar-archive-plugin

Uninstall thunar-archive-plugin And Its Dependencies

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

sudo apt-get -y autoremove thunar-archive-plugin

Remove thunar-archive-plugin Configurations and Data

To remove thunar-archive-plugin configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge thunar-archive-plugin

Remove thunar-archive-plugin configuration, data, and all of its dependencies

We can use the following command to remove thunar-archive-plugin configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge thunar-archive-plugin

References

Summary

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