How To Install caja-image-converter on Kali Linux
Introduction
In this tutorial we learn how to install caja-image-converter
on Kali Linux.
What is caja-image-converter
caja-image-converter is:
Caja is the official file manager for the MATE desktop. This package adds extended functionality to the Caja file manager.
This package adds a “Resize Images…” menu item to the context menu of all images. This opens a dialog where you set the desired image size and file name. A click on “Resize” finally resizes the image(s) using ImageMagick’s convert tool.
There are three methods to install caja-image-converter
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 caja-image-converter Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install caja-image-converter
using apt-get
by running the following command:
sudo apt-get -y install caja-image-converter
Install caja-image-converter Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install caja-image-converter
using apt
by running the following command:
sudo apt -y install caja-image-converter
Install caja-image-converter 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 caja-image-converter
using aptitude
by running the following command:
sudo aptitude -y install caja-image-converter
How To Uninstall caja-image-converter on Kali Linux
To uninstall only the caja-image-converter
package we can use the following command:
sudo apt-get remove caja-image-converter
Uninstall caja-image-converter And Its Dependencies
To uninstall caja-image-converter
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove caja-image-converter
Remove caja-image-converter Configurations and Data
To remove caja-image-converter
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge caja-image-converter
Remove caja-image-converter configuration, data, and all of its dependencies
We can use the following command to remove caja-image-converter
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge caja-image-converter
Dependencies
caja-image-converter have the following dependencies:
References
Summary
In this tutorial we learn how to install caja-image-converter
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.