How To Install gnome-recipes-data on Kali Linux

In this tutorial we learn how to install gnome-recipes-data on Kali Linux. gnome-recipes-data is Recipe application for GNOME (data files)

Introduction

In this tutorial we learn how to install gnome-recipes-data on Kali Linux.

What is gnome-recipes-data

gnome-recipes-data is:

GNOME Recipes is an easy-to-use application that will help you to discover what to cook for today, tomorrow, the rest of the week, and your special occasions.

GNOME Recipes comes with a collection of recipes that have been collected by GNOME contributors from all over the world. It also lets you store your own recipes, and share them with your friends.

This package contains architecture-independent data files.

There are three methods to install gnome-recipes-data 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 gnome-recipes-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 gnome-recipes-data using apt-get by running the following command:

sudo apt-get -y install gnome-recipes-data

Install gnome-recipes-data Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install gnome-recipes-data using apt by running the following command:

sudo apt -y install gnome-recipes-data

Install gnome-recipes-data 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 gnome-recipes-data using aptitude by running the following command:

sudo aptitude -y install gnome-recipes-data

How To Uninstall gnome-recipes-data on Kali Linux

To uninstall only the gnome-recipes-data package we can use the following command:

sudo apt-get remove gnome-recipes-data

Uninstall gnome-recipes-data And Its Dependencies

To uninstall gnome-recipes-data and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove gnome-recipes-data

Remove gnome-recipes-data Configurations and Data

To remove gnome-recipes-data configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge gnome-recipes-data

Remove gnome-recipes-data configuration, data, and all of its dependencies

We can use the following command to remove gnome-recipes-data configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge gnome-recipes-data

Dependencies

gnome-recipes-data have the following dependencies:

References

Summary

In this tutorial we learn how to install gnome-recipes-data package on Kali Linux using different package management tools: apt, apt-get and aptitude.