How To Install libtracker-miner-doc on Debian 10
Introduction
In this tutorial we learn how to install libtracker-miner-doc
on Debian 10.
What is libtracker-miner-doc
libtracker-miner-doc is:
This package contains the gtk-doc API documentation for libtracker-miner.
libtracker-miner provides a library to develop tracker data miners.
Tracker is an advanced framework for first class objects with associated metadata and tags. It provides a one stop solution for all metadata, tags, shared object databases, search tools and indexing.
There are three methods to install libtracker-miner-doc
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 libtracker-miner-doc Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libtracker-miner-doc
using apt-get
by running the following command:
sudo apt-get -y install libtracker-miner-doc
Install libtracker-miner-doc Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libtracker-miner-doc
using apt
by running the following command:
sudo apt -y install libtracker-miner-doc
Install libtracker-miner-doc 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 libtracker-miner-doc
using aptitude
by running the following command:
sudo aptitude -y install libtracker-miner-doc
How To Uninstall libtracker-miner-doc on Debian 10
To uninstall only the libtracker-miner-doc
package we can use the following command:
sudo apt-get remove libtracker-miner-doc
Uninstall libtracker-miner-doc And Its Dependencies
To uninstall libtracker-miner-doc
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libtracker-miner-doc
Remove libtracker-miner-doc Configurations and Data
To remove libtracker-miner-doc
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libtracker-miner-doc
Remove libtracker-miner-doc configuration, data, and all of its dependencies
We can use the following command to remove libtracker-miner-doc
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libtracker-miner-doc
Dependencies
libtracker-miner-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install libtracker-miner-doc
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.