How To Install libmysql++-doc on Kali Linux

In this tutorial we learn how to install libmysql++-doc on Kali Linux. libmysql++-doc is MySQL C++ library bindings (documentation and examples)

Introduction

In this tutorial we learn how to install libmysql++-doc on Kali Linux.

What is libmysql++-doc

libmysql++-doc is:

MySQL++ is a complex C++ API for MySQL (and other SQL databases soon). The goal of this API is to make working with Queries as easy as working with other STL Containers.

This package provides documentation and examples. Please read the instructions in README.Debian in order to build the examples.

There are three methods to install libmysql++-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 libmysql++-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 libmysql++-doc using apt-get by running the following command:

sudo apt-get -y install libmysql++-doc

Install libmysql++-doc Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libmysql++-doc using apt by running the following command:

sudo apt -y install libmysql++-doc

Install libmysql++-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 libmysql++-doc using aptitude by running the following command:

sudo aptitude -y install libmysql++-doc

How To Uninstall libmysql++-doc on Kali Linux

To uninstall only the libmysql++-doc package we can use the following command:

sudo apt-get remove libmysql++-doc

Uninstall libmysql++-doc And Its Dependencies

To uninstall libmysql++-doc and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libmysql++-doc

Remove libmysql++-doc Configurations and Data

To remove libmysql++-doc configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libmysql++-doc

Remove libmysql++-doc configuration, data, and all of its dependencies

We can use the following command to remove libmysql++-doc configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libmysql++-doc

Dependencies

libmysql++-doc have the following dependencies:

References

Summary

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