How To Install routino-dbg on Debian 9

In this tutorial we learn how to install routino-dbg on Debian 9. routino-dbg is Debug symbols for Routino

Introduction

In this tutorial we learn how to install routino-dbg on Debian 9.

What is routino-dbg

routino-dbg is:

Routino is an application for finding a route between two points using the dataset of topographical information collected by OpenStreetMap

This package provides debug symbols for libroutino.

There are three methods to install routino-dbg 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 routino-dbg Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install routino-dbg using apt-get by running the following command:

sudo apt-get -y install routino-dbg

Install routino-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install routino-dbg using apt by running the following command:

sudo apt -y install routino-dbg

Install routino-dbg 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 routino-dbg using aptitude by running the following command:

sudo aptitude -y install routino-dbg

How To Uninstall routino-dbg on Debian 9

To uninstall only the routino-dbg package we can use the following command:

sudo apt-get remove routino-dbg

Uninstall routino-dbg And Its Dependencies

To uninstall routino-dbg and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove routino-dbg

Remove routino-dbg Configurations and Data

To remove routino-dbg configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge routino-dbg

Remove routino-dbg configuration, data, and all of its dependencies

We can use the following command to remove routino-dbg configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge routino-dbg

Dependencies

routino-dbg have the following dependencies:

References

Summary

In this tutorial we learn how to install routino-dbg package on Debian 9 using different package management tools: apt, apt-get and aptitude.