How To Install junior-art on Kali Linux

In this tutorial we learn how to install junior-art on Kali Linux. junior-art is Debian Jr. Art

Introduction

In this tutorial we learn how to install junior-art on Kali Linux.

What is junior-art

junior-art is:

Tools for children to produce artwork. The simplest of these is tuxpaint, which is designed for small children. It features sounds and easy to use controls. For older children, there are gimp and xpaint. While gimp is more complex, and is aimed at the graphic artist, it is not necessarily much harder to use than the older, less full-featured xpaint. Children starting out with just a small subset of the functions of these tools eventually pick up quite a number of new things as they explore, either with adults or other children with whom they share their computers, or on their own.

There are three methods to install junior-art 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 junior-art Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install junior-art using apt-get by running the following command:

sudo apt-get -y install junior-art

Install junior-art Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install junior-art using apt by running the following command:

sudo apt -y install junior-art

Install junior-art 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 junior-art using aptitude by running the following command:

sudo aptitude -y install junior-art

How To Uninstall junior-art on Kali Linux

To uninstall only the junior-art package we can use the following command:

sudo apt-get remove junior-art

Uninstall junior-art And Its Dependencies

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

sudo apt-get -y autoremove junior-art

Remove junior-art Configurations and Data

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

sudo apt-get -y purge junior-art

Remove junior-art configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge junior-art

Dependencies

junior-art have the following dependencies:

References

Summary

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