How To Install tuxpaint on Kali Linux
Introduction
In this tutorial we learn how to install tuxpaint
on Kali Linux.
What is tuxpaint
tuxpaint is:
Tux Paint is meant to be a simple drawing program for young children. It is not meant as a general-purpose drawing tool. It IS meant to be fun and easy to use. Sound effects and a cartoon character help let the user know what’s going on, and keeps them entertained.
Tux Paint is extensible. Brushes and “rubber stamp” shapes can be dropped in and pulled out. For example, a teacher can drop in a collection of animal shapes and ask their students to draw an ecosystem. Each shape can have a sound which is played, and textual facts which are displayed, when the child selects the shape.
There is no direct access to the computer’s underlying intricacies. The current image is kept when the program quits, and reappears when it is restarted. Saving images requires no need to create filenames or use the keyboard. Opening an image is done by selecting it from a collection of thumbnails.
There are three methods to install tuxpaint
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 tuxpaint Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install tuxpaint
using apt-get
by running the following command:
sudo apt-get -y install tuxpaint
Install tuxpaint Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install tuxpaint
using apt
by running the following command:
sudo apt -y install tuxpaint
Install tuxpaint 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 tuxpaint
using aptitude
by running the following command:
sudo aptitude -y install tuxpaint
How To Uninstall tuxpaint on Kali Linux
To uninstall only the tuxpaint
package we can use the following command:
sudo apt-get remove tuxpaint
Uninstall tuxpaint And Its Dependencies
To uninstall tuxpaint
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove tuxpaint
Remove tuxpaint Configurations and Data
To remove tuxpaint
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge tuxpaint
Remove tuxpaint configuration, data, and all of its dependencies
We can use the following command to remove tuxpaint
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge tuxpaint
Dependencies
tuxpaint have the following dependencies:
References
Summary
In this tutorial we learn how to install tuxpaint
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.