How To Install geany-plugin-multiterm on Debian 9

In this tutorial we learn how to install geany-plugin-multiterm on Debian 9. geany-plugin-multiterm is multiterm plugin for Geany

Introduction

In this tutorial we learn how to install geany-plugin-multiterm on Debian 9.

What is geany-plugin-multiterm

geany-plugin-multiterm is:

MultiTerm is similar to Geany’s built-in VTE terminal except that it supports multiple terminals in tabs and supports different shells in each of the terminal tabs.

Geany is a small and lightweight integrated development environment using the Gtk+ toolkit.

There are three methods to install geany-plugin-multiterm on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install geany-plugin-multiterm Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install geany-plugin-multiterm

Install geany-plugin-multiterm Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install geany-plugin-multiterm

Install geany-plugin-multiterm 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 Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install geany-plugin-multiterm using aptitude by running the following command:

sudo aptitude -y install geany-plugin-multiterm

How To Uninstall geany-plugin-multiterm on Debian 9

To uninstall only the geany-plugin-multiterm package we can use the following command:

sudo apt-get remove geany-plugin-multiterm

Uninstall geany-plugin-multiterm And Its Dependencies

To uninstall geany-plugin-multiterm and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove geany-plugin-multiterm

Remove geany-plugin-multiterm Configurations and Data

To remove geany-plugin-multiterm configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge geany-plugin-multiterm

Remove geany-plugin-multiterm configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge geany-plugin-multiterm

Dependencies

geany-plugin-multiterm have the following dependencies:

References

Summary

In this tutorial we learn how to install geany-plugin-multiterm package on Debian 9 using different package management tools: apt, apt-get and aptitude.