How To Install stardict-xmlittre on Kali Linux
Introduction
In this tutorial we learn how to install stardict-xmlittre on Kali Linux.
What is stardict-xmlittre
stardict-xmlittre is:
This package contains a XML version of the French language dictionary written by ?mile Littr? and published in 1863, suitable for the stardict dictionary software.
Despite its age, this dictionary now fallen in the public domain is still a widely used reference source for French language and litterature. It features 78,423 entries and 239,009 quotes from 3,910 authors.
Homepage: http://francois.gannaz.free.fr/Littre/
There are three methods to install stardict-xmlittre 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 stardict-xmlittre Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install stardict-xmlittre using apt-get by running the following command:
sudo apt-get -y install stardict-xmlittreInstall stardict-xmlittre Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install stardict-xmlittre using apt by running the following command:
sudo apt -y install stardict-xmlittreInstall stardict-xmlittre 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 stardict-xmlittre using aptitude by running the following command:
sudo aptitude -y install stardict-xmlittreHow To Uninstall stardict-xmlittre on Kali Linux
To uninstall only the stardict-xmlittre package we can use the following command:
sudo apt-get remove stardict-xmlittreUninstall stardict-xmlittre And Its Dependencies
To uninstall stardict-xmlittre and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove stardict-xmlittreRemove stardict-xmlittre Configurations and Data
To remove stardict-xmlittre configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge stardict-xmlittreRemove stardict-xmlittre configuration, data, and all of its dependencies
We can use the following command to remove stardict-xmlittre configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge stardict-xmlittreDependencies
stardict-xmlittre have the following dependencies:
References
Summary
In this tutorial we learn how to install stardict-xmlittre package on Kali Linux using different package management tools: apt, apt-get and aptitude.