How To Install conjugar on Kali Linux
Introduction
In this tutorial we learn how to install conjugar on Kali Linux.
What is conjugar
conjugar is:
Text only program to conjugate Portuguese verbs as spoken in Brazil.
If the entered expression is not a verb, conjugar tries to find it among the conjugated forms of known verbs. It also has the option of conjugating verbs as ordinary Brazilians do. In fact, Brazilians of different regions deviate from the normative grammar in different ways, but the conjugation displayed will already help foreigners to grasp what Brazilians are saying.
This program is console based. Alternatively, you can use GConjugue, the graphical (GTK+) version for conjugar.
There are three methods to install conjugar 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 conjugar Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install conjugar using apt-get by running the following command:
sudo apt-get -y install conjugarInstall conjugar Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install conjugar using apt by running the following command:
sudo apt -y install conjugarInstall conjugar 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 conjugar using aptitude by running the following command:
sudo aptitude -y install conjugarHow To Uninstall conjugar on Kali Linux
To uninstall only the conjugar package we can use the following command:
sudo apt-get remove conjugarUninstall conjugar And Its Dependencies
To uninstall conjugar and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove conjugarRemove conjugar Configurations and Data
To remove conjugar configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge conjugarRemove conjugar configuration, data, and all of its dependencies
We can use the following command to remove conjugar configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge conjugarDependencies
conjugar have the following dependencies:
References
Summary
In this tutorial we learn how to install conjugar package on Kali Linux using different package management tools: apt, apt-get and aptitude.