How To Install libodpic-doc on Kali Linux
Introduction
In this tutorial we learn how to install libodpic-doc
on Kali Linux.
What is libodpic-doc
libodpic-doc is:
This package contains Oracle Database Programming Interface for C (ODPI-C), an open source library of C code that simplifies access to Oracle Database for applications written in C or C++. It is a wrapper over Oracle Call Interface (OCI) that makes applications and language interfaces easier to develop.
ODPI-C supports basic and advanced features of Oracle Database and Oracle Client.
This package contains the documentation.
There are three methods to install libodpic-doc
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 libodpic-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 libodpic-doc
using apt-get
by running the following command:
sudo apt-get -y install libodpic-doc
Install libodpic-doc Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libodpic-doc
using apt
by running the following command:
sudo apt -y install libodpic-doc
Install libodpic-doc 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 libodpic-doc
using aptitude
by running the following command:
sudo aptitude -y install libodpic-doc
How To Uninstall libodpic-doc on Kali Linux
To uninstall only the libodpic-doc
package we can use the following command:
sudo apt-get remove libodpic-doc
Uninstall libodpic-doc And Its Dependencies
To uninstall libodpic-doc
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libodpic-doc
Remove libodpic-doc Configurations and Data
To remove libodpic-doc
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libodpic-doc
Remove libodpic-doc configuration, data, and all of its dependencies
We can use the following command to remove libodpic-doc
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libodpic-doc
Dependencies
libodpic-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install libodpic-doc
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.