How To Install sagasu on Debian 9

In this tutorial we learn how to install sagasu on Debian 9. sagasu is GNOME tool to find strings in a set of files

Introduction

In this tutorial we learn how to install sagasu on Debian 9.

What is sagasu

sagasu is:

The user specifies the search directory and the set of files to be searched. Double-clicking on a search result launches a user command that can for example load the file in an editor at the appropriate line. The search can optionally ignore CVS directories.

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

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

sudo apt-get update

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

sudo apt-get -y install sagasu

Install sagasu Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install sagasu

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

sudo aptitude -y install sagasu

How To Uninstall sagasu on Debian 9

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

sudo apt-get remove sagasu

Uninstall sagasu And Its Dependencies

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

sudo apt-get -y autoremove sagasu

Remove sagasu Configurations and Data

To remove sagasu configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge sagasu

Remove sagasu configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge sagasu

Dependencies

sagasu have the following dependencies:

References

Summary

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