How To Install brazilian-conjugate on Kali Linux
Introduction
In this tutorial we learn how to install brazilian-conjugate on Kali Linux.
What is brazilian-conjugate
brazilian-conjugate is:
This package contains a interactive program (conjugue) capable of conjugating Portuguese verbs, as spoken in Brazil. The upstream version is numbered 1.0, but as it is distributed together with the Ispell dictionary for Brazilian Portuguese, it has the same version number as the ibrazilian package for Debian.
There are three methods to install brazilian-conjugate 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 brazilian-conjugate Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install brazilian-conjugate using apt-get by running the following command:
sudo apt-get -y install brazilian-conjugateInstall brazilian-conjugate Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install brazilian-conjugate using apt by running the following command:
sudo apt -y install brazilian-conjugateInstall brazilian-conjugate 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 brazilian-conjugate using aptitude by running the following command:
sudo aptitude -y install brazilian-conjugateHow To Uninstall brazilian-conjugate on Kali Linux
To uninstall only the brazilian-conjugate package we can use the following command:
sudo apt-get remove brazilian-conjugateUninstall brazilian-conjugate And Its Dependencies
To uninstall brazilian-conjugate and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove brazilian-conjugateRemove brazilian-conjugate Configurations and Data
To remove brazilian-conjugate configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge brazilian-conjugateRemove brazilian-conjugate configuration, data, and all of its dependencies
We can use the following command to remove brazilian-conjugate configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge brazilian-conjugateDependencies
brazilian-conjugate have the following dependencies:
References
Summary
In this tutorial we learn how to install brazilian-conjugate package on Kali Linux using different package management tools: apt, apt-get and aptitude.