How To Install hyperestraier on Debian 9

In this tutorial we learn how to install hyperestraier on Debian 9. hyperestraier is full-text search system for communities

Introduction

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

What is hyperestraier

hyperestraier is:

Hyper Estraier is a full-text search system. You can search lots of documents for some documents including specified words. If you run a web site, it is useful as your own search engine for pages in your site. Also, it is useful as search utilities of mail boxes and file servers. The characteristic of Hyper Estraier is the following.

  • High performance of search
  • High scalability of target documents
  • Perfect recall ratio by N-gram method
  • Phrase search, attribute search, and similarity search
  • Multilingualism with Unicode
  • Independent of file format and repository
  • Simple and powerful API
  • Supporting P2P architecture It is redesigned Estraier and you can connect several index nodes over the network using node API.

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

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

sudo apt-get update

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

sudo apt-get -y install hyperestraier

Install hyperestraier Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install hyperestraier

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

sudo aptitude -y install hyperestraier

How To Uninstall hyperestraier on Debian 9

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

sudo apt-get remove hyperestraier

Uninstall hyperestraier And Its Dependencies

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

sudo apt-get -y autoremove hyperestraier

Remove hyperestraier Configurations and Data

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

sudo apt-get -y purge hyperestraier

Remove hyperestraier configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge hyperestraier

Dependencies

hyperestraier have the following dependencies:

References

Summary

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