How To Install libcglm-doc on Kali Linux

In this tutorial we learn how to install libcglm-doc on Kali Linux. libcglm-doc is Documentation for the cglm library

Introduction

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

What is libcglm-doc

libcglm-doc is:

cglm is an optimized 3D math library written in C99 (compatible with C89). It is based on the OpenGL Shading Language (GLSL) specification and similar to the original glm library except this library is written in C. It uses the same header-only approach like glm but also supports pre-compield function calls

This package contains the documentation files in HTML format.

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

sudo apt-get -y install libcglm-doc

Install libcglm-doc Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libcglm-doc

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

sudo aptitude -y install libcglm-doc

How To Uninstall libcglm-doc on Kali Linux

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

sudo apt-get remove libcglm-doc

Uninstall libcglm-doc And Its Dependencies

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

sudo apt-get -y autoremove libcglm-doc

Remove libcglm-doc Configurations and Data

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

sudo apt-get -y purge libcglm-doc

Remove libcglm-doc configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libcglm-doc

Dependencies

libcglm-doc have the following dependencies:

References

Summary

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