How To Install simple-image-reducer on Kali Linux
Introduction
In this tutorial we learn how to install simple-image-reducer on Kali Linux.
What is simple-image-reducer
simple-image-reducer is:
Simple Image Reducer is an GTK application to easily reduce and rotate images. It can be useful for processing digital photos before sending by email or uploading on the Web. Image files can be supplied to the application from the file manager using the context menu “Open with…”, or dragging files to the main window.
There are three methods to install simple-image-reducer 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 simple-image-reducer Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install simple-image-reducer using apt-get by running the following command:
sudo apt-get -y install simple-image-reducerInstall simple-image-reducer Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install simple-image-reducer using apt by running the following command:
sudo apt -y install simple-image-reducerInstall simple-image-reducer 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 simple-image-reducer using aptitude by running the following command:
sudo aptitude -y install simple-image-reducerHow To Uninstall simple-image-reducer on Kali Linux
To uninstall only the simple-image-reducer package we can use the following command:
sudo apt-get remove simple-image-reducerUninstall simple-image-reducer And Its Dependencies
To uninstall simple-image-reducer and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove simple-image-reducerRemove simple-image-reducer Configurations and Data
To remove simple-image-reducer configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge simple-image-reducerRemove simple-image-reducer configuration, data, and all of its dependencies
We can use the following command to remove simple-image-reducer configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge simple-image-reducerDependencies
simple-image-reducer have the following dependencies:
References
Summary
In this tutorial we learn how to install simple-image-reducer package on Kali Linux using different package management tools: apt, apt-get and aptitude.