How To Install coriander on Debian 9
Introduction
In this tutorial we learn how to install coriander on Debian 9.
What is coriander
coriander is:
Coriander is a GUI that lets you view camera images and control all the features of an IEEE-1394 Digital Camera complying with the DC Specifications v1.04 or later (see http://www.1394ta.org).
There are three methods to install coriander on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install coriander Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install coriander using apt-get by running the following command:
sudo apt-get -y install coriander
Install coriander Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install coriander using apt by running the following command:
sudo apt -y install coriander
Install coriander 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 coriander using aptitude by running the following command:
sudo aptitude -y install coriander
How To Uninstall coriander on Debian 9
To uninstall only the coriander package we can use the following command:
sudo apt-get remove coriander
Uninstall coriander And Its Dependencies
To uninstall coriander and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove coriander
Remove coriander Configurations and Data
To remove coriander configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge coriander
Remove coriander configuration, data, and all of its dependencies
We can use the following command to remove coriander configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge coriander
Dependencies
coriander have the following dependencies:
- libatk1.0-0
- libc6
- libdc1394-22
- libftp4
- libgdk-pixbuf2.0-0
- libglib2.0-0
- libgnome-2-0
- libgnomeui-0
- libgtk2.0-0
- libraw1394-11
- libsdl1.2debian
- libtiff5
- libx11-6
- libxv1
References
Summary
In this tutorial we learn how to install coriander package on Debian 9 using different package management tools: apt, apt-get and aptitude.