How To Install libogdi4.1 on Kali Linux

In this tutorial we learn how to install libogdi4.1 on Kali Linux. libogdi4.1 is Open Geographic Datastore Interface Library – library

Introduction

In this tutorial we learn how to install libogdi4.1 on Kali Linux.

What is libogdi4.1

libogdi4.1 is:

OGDI is the Open Geographic Datastore Interface. OGDI is an application programming interface (API) that uses a standardized access methods to work in conjunction with GIS software packages (the application) and various geospatial data products. OGDI uses a client/server architecture to facilitate the dissemination of geospatial data products over any TCP/IP network, and a driver-oriented approach to facilitate access to several geospatial data products/formats.

This package contains the run-time library used by client programs.

There are three methods to install libogdi4.1 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 libogdi4.1 Using apt-get

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

sudo apt-get update

After updating apt database, We can install libogdi4.1 using apt-get by running the following command:

sudo apt-get -y install libogdi4.1

Install libogdi4.1 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libogdi4.1 using apt by running the following command:

sudo apt -y install libogdi4.1

Install libogdi4.1 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 update

After updating apt database, We can install libogdi4.1 using aptitude by running the following command:

sudo aptitude -y install libogdi4.1

How To Uninstall libogdi4.1 on Kali Linux

To uninstall only the libogdi4.1 package we can use the following command:

sudo apt-get remove libogdi4.1

Uninstall libogdi4.1 And Its Dependencies

To uninstall libogdi4.1 and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libogdi4.1

Remove libogdi4.1 Configurations and Data

To remove libogdi4.1 configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libogdi4.1

Remove libogdi4.1 configuration, data, and all of its dependencies

We can use the following command to remove libogdi4.1 configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libogdi4.1

Dependencies

libogdi4.1 have the following dependencies:

References

Summary

In this tutorial we learn how to install libogdi4.1 package on Kali Linux using different package management tools: apt, apt-get and aptitude.