How To Install ispell on Kali Linux
Introduction
In this tutorial we learn how to install ispell on Kali Linux.
What is ispell
ispell is:
Ispell corrects spelling in plain text, LaTeX, sgml/html/xml, and nroff files. [x]Emacs and jed have nice interfaces to ispell, and ispell works from many other tools and from the command line as well.
No ispell dictionaries are included in this package; you must install at least one of them (“iamerican” is recommended by default for no good reason); install the “ispell-dictionary” package(s) for the language(s) you and your users will want to spell-check.
It’s a good idea to install “word list” package(s) for the same language(s), because they’ll be used by ispell’s (L)ookup command.
There are three methods to install ispell 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 ispell Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install ispell using apt-get by running the following command:
sudo apt-get -y install ispellInstall ispell Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install ispell using apt by running the following command:
sudo apt -y install ispellInstall ispell 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 ispell using aptitude by running the following command:
sudo aptitude -y install ispellHow To Uninstall ispell on Kali Linux
To uninstall only the ispell package we can use the following command:
sudo apt-get remove ispellUninstall ispell And Its Dependencies
To uninstall ispell and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove ispellRemove ispell Configurations and Data
To remove ispell configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge ispellRemove ispell configuration, data, and all of its dependencies
We can use the following command to remove ispell configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ispellDependencies
ispell have the following dependencies:
References
Summary
In this tutorial we learn how to install ispell package on Kali Linux using different package management tools: apt, apt-get and aptitude.