How To Install kdc2tiff on Debian 10
Introduction
In this tutorial we learn how to install kdc2tiff
on Debian 10.
What is kdc2tiff
kdc2tiff is:
Convert kdc files as created by KodaK DC-120 digital cameras to tiff or jpeg with attention to aspect ratio, accurate scaling, contrast adjustment, gamma correction and image rotation.
There are three methods to install kdc2tiff
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install kdc2tiff Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install kdc2tiff
using apt-get
by running the following command:
sudo apt-get -y install kdc2tiff
Install kdc2tiff Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install kdc2tiff
using apt
by running the following command:
sudo apt -y install kdc2tiff
Install kdc2tiff Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install kdc2tiff
using aptitude
by running the following command:
sudo aptitude -y install kdc2tiff
How To Uninstall kdc2tiff on Debian 10
To uninstall only the kdc2tiff
package we can use the following command:
sudo apt-get remove kdc2tiff
Uninstall kdc2tiff And Its Dependencies
To uninstall kdc2tiff
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove kdc2tiff
Remove kdc2tiff Configurations and Data
To remove kdc2tiff
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge kdc2tiff
Remove kdc2tiff configuration, data, and all of its dependencies
We can use the following command to remove kdc2tiff
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge kdc2tiff
Dependencies
kdc2tiff have the following dependencies:
References
Summary
In this tutorial we learn how to install kdc2tiff
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.