How To Install gfaim-data on Ubuntu 18.04
Introduction
In this tutorial we learn how to install gfaim-data on Ubuntu 18.04.
What is gfaim-data
gfaim-data is:
Gfaim is a small utility written using GTK+ which allows you to find a lot of recipes easily by typing the name of the ingredient you want. Its database contains more then 10 000 recipes. Please note that those recipes are written in French.
This package contains the recipe database for gfaim
There are three methods to install gfaim-data on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install gfaim-data Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install gfaim-data using apt-get by running the following command:
sudo apt-get -y install gfaim-data
Install gfaim-data Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install gfaim-data using apt by running the following command:
sudo apt -y install gfaim-data
Install gfaim-data Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install gfaim-data using aptitude by running the following command:
sudo aptitude -y install gfaim-data
How To Uninstall gfaim-data on Ubuntu 18.04
To uninstall only the gfaim-data package we can use the following command:
sudo apt-get remove gfaim-data
Uninstall gfaim-data And Its Dependencies
To uninstall gfaim-data and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove gfaim-data
Remove gfaim-data Configurations and Data
To remove gfaim-data configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge gfaim-data
Remove gfaim-data configuration, data, and all of its dependencies
We can use the following command to remove gfaim-data configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gfaim-data
References
Summary
In this tutorial we learn how to install gfaim-data package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.