How To Install xpaint on Kali Linux
Introduction
In this tutorial we learn how to install xpaint on Kali Linux.
What is xpaint
xpaint is:
XPaint is suitable for producing simple graphics. It does offer some advanced features such as image processing functions and gradient fill.
In the C Script Editor of XPaint, the External editor in the File menu will invoke x-terminal-emulator -e sensible-editor.
The gv package will be needed for PDF/PS reading, netpbm will be needed for external conversion, lpr for printing.
There are three methods to install xpaint 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 xpaint Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install xpaint using apt-get by running the following command:
sudo apt-get -y install xpaintInstall xpaint Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install xpaint using apt by running the following command:
sudo apt -y install xpaintInstall xpaint 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 updateAfter updating apt database, We can install xpaint using aptitude by running the following command:
sudo aptitude -y install xpaintHow To Uninstall xpaint on Kali Linux
To uninstall only the xpaint package we can use the following command:
sudo apt-get remove xpaintUninstall xpaint And Its Dependencies
To uninstall xpaint and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove xpaintRemove xpaint Configurations and Data
To remove xpaint configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge xpaintRemove xpaint configuration, data, and all of its dependencies
We can use the following command to remove xpaint configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge xpaintDependencies
xpaint have the following dependencies:
- libc6
- libfontconfig1
- libjpeg62-turbo
- libpng16-16
- libtiff5
- libx11-6
- libxaw3dxft6
- libxext6
- libxft2
- libxmu6
- libxpm4
- libxt6
References
Summary
In this tutorial we learn how to install xpaint package on Kali Linux using different package management tools: apt, apt-get and aptitude.