How To Install gconjugue on Kali Linux
Introduction
In this tutorial we learn how to install gconjugue
on Kali Linux.
What is gconjugue
gconjugue is:
Graphical program to conjugate Portuguese verbs as spoken in Brazil.
If the entered expression is not a verb, GConjugue 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 a graphical interface. Alternatively, you can use conjugar, the text only version for gconjugue.
There are three methods to install gconjugue
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 gconjugue Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install gconjugue
using apt-get
by running the following command:
sudo apt-get -y install gconjugue
Install gconjugue Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install gconjugue
using apt
by running the following command:
sudo apt -y install gconjugue
Install gconjugue 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 update
After updating apt database, We can install gconjugue
using aptitude
by running the following command:
sudo aptitude -y install gconjugue
How To Uninstall gconjugue on Kali Linux
To uninstall only the gconjugue
package we can use the following command:
sudo apt-get remove gconjugue
Uninstall gconjugue And Its Dependencies
To uninstall gconjugue
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove gconjugue
Remove gconjugue Configurations and Data
To remove gconjugue
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge gconjugue
Remove gconjugue configuration, data, and all of its dependencies
We can use the following command to remove gconjugue
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gconjugue
Dependencies
gconjugue have the following dependencies:
References
Summary
In this tutorial we learn how to install gconjugue
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.