How To Install hyphen-sr on Kali Linux
Introduction
In this tutorial we learn how to install hyphen-sr on Kali Linux.
What is hyphen-sr
hyphen-sr is:
This package contains the Serbian hyphenation patterns.
You can use these patterns with programs which take advantage of libhyphen, like LibreOffice.
There are three methods to install hyphen-sr on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install hyphen-sr Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install hyphen-sr using apt-get by running the following command:
sudo apt-get -y install hyphen-srInstall hyphen-sr Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install hyphen-sr using apt by running the following command:
sudo apt -y install hyphen-srInstall hyphen-sr Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install hyphen-sr using aptitude by running the following command:
sudo aptitude -y install hyphen-srHow To Uninstall hyphen-sr on Kali Linux
To uninstall only the hyphen-sr package we can use the following command:
sudo apt-get remove hyphen-srUninstall hyphen-sr And Its Dependencies
To uninstall hyphen-sr and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove hyphen-srRemove hyphen-sr Configurations and Data
To remove hyphen-sr configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge hyphen-srRemove hyphen-sr configuration, data, and all of its dependencies
We can use the following command to remove hyphen-sr configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge hyphen-srDependencies
hyphen-sr have the following dependencies:
References
Summary
In this tutorial we learn how to install hyphen-sr package on Kali Linux using different package management tools: apt, apt-get and aptitude.